about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/vitetris/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/vitetris/default.nix')
-rw-r--r--nixpkgs/pkgs/games/vitetris/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/vitetris/default.nix b/nixpkgs/pkgs/games/vitetris/default.nix
new file mode 100644
index 000000000000..f7e566b22084
--- /dev/null
+++ b/nixpkgs/pkgs/games/vitetris/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, lib }:
+
+stdenv.mkDerivation rec {
+  pname = "vitetris";
+  version = "0.59.1";
+
+  src = fetchFromGitHub {
+    owner = "vicgeralds";
+    repo = "vitetris";
+    rev = "v${version}";
+    sha256 = "sha256-Rbfa2hD67RGmInfWwYD4SthL8lm5bGSBi3oudV5hAao=";
+  };
+
+  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 ];
+    mainProgram = "tetris";
+
+    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.
+    '';
+  };
+}