depot/third_party/nixpkgs/pkgs/games/vitetris/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

32 lines
905 B
Nix

{ 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.
'';
};
}