ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / vitetris / default.nix
blob99996ca5c324f3fbd6455c0f4caa12f9373a73ec
1 { stdenv, fetchFromGitHub, lib }:
3 stdenv.mkDerivation rec {
4   pname = "vitetris";
5   version = "0.59.1";
7   src = fetchFromGitHub {
8     owner = "vicgeralds";
9     repo = "vitetris";
10     rev = "v${version}";
11     sha256 = "sha256-Rbfa2hD67RGmInfWwYD4SthL8lm5bGSBi3oudV5hAao=";
12   };
14   hardeningDisable = [ "format" ];
16   makeFlags = [ "INSTALL=install" ];
18   meta = {
19     description = "Terminal-based Tetris clone by Victor Nilsson";
20     homepage = "http://www.victornils.net/tetris/";
21     license = lib.licenses.bsd2;
22     maintainers = with lib.maintainers; [ siers ];
24     longDescription = ''
25       vitetris is a terminal-based Tetris clone by Victor Nilsson. Gameplay is much
26       like the early Tetris games by Nintendo.
28       Features include: configurable keys, highscore table, two-player mode with
29       garbage, network play, joystick (gamepad) support on Linux or with Allegro.
30     '';
31   };