biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / games / vitetris / default.nix
blob67358134e66907cc47e0a66d72cbbc9035442d09
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" "CPPFLAGS=-Wno-implicit-int" ];
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 ];
23     mainProgram = "tetris";
24     platforms = lib.platforms.unix;
26     longDescription = ''
27       vitetris is a terminal-based Tetris clone by Victor Nilsson. Gameplay is much
28       like the early Tetris games by Nintendo.
30       Features include: configurable keys, highscore table, two-player mode with
31       garbage, network play, joystick (gamepad) support on Linux or with Allegro.
32     '';
33   };