summary refs log tree commit diff
path: root/pkgs/games/vitetris/default.nix
blob: 7f552bdd5d668d2f18bc1afb4dc326fc3805c434 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, lib }:

stdenv.mkDerivation rec {
  pname = "vitetris";
  version = "0.58.0";

  src = fetchFromGitHub {
    owner = "vicgeralds";
    repo = "vitetris";
    rev = "v${version}";
    sha256 = "1fvw9yqg1q25x6dlfi4bl3hrrcdgl6wwq29j89aycxwdfxrxs09w";
  };

  hardeningDisable = [ "format" ];

  makeFlags = "INSTALL=install";

  meta = {
    description = "Terminal-based Tetris clone by Victor Nilsson";
    homepage = http://www.victornils.net/tetris/;
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ siers ];

    longDescription = ''
      vitetris is a terminal-based Tetris clone by Victor Nilsson. Gameplay is much
      like the early Tetris games by Nintendo.

      Features include: configurable keys, highscore table, two-player mode with
      garbage, network play, joystick (gamepad) support on Linux or with Allegro.
    '';
  };
}