vitetris: init at 0.57.2 (#45672)
This commit is contained in:
parent
c383462c79
commit
1ae5f05d16
@ -3700,6 +3700,11 @@
|
||||
github = "siddharthist";
|
||||
name = "Langston Barrett";
|
||||
};
|
||||
siers = {
|
||||
email = "veinbahs+nixpkgs@gmail.com";
|
||||
github = "siers";
|
||||
name = "Raitis Veinbahs";
|
||||
};
|
||||
sifmelcara = {
|
||||
email = "ming@culpring.com";
|
||||
github = "sifmelcara";
|
||||
|
32
pkgs/games/vitetris/default.nix
Normal file
32
pkgs/games/vitetris/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitHub, lib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vitetris-${version}";
|
||||
version = "0.57.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vicgeralds";
|
||||
repo = "vitetris";
|
||||
rev = "v${version}";
|
||||
sha256 = "0px0h4zrpzr6xd1vz7w9gr6rh0z74y66jfzschkcvj84plld10k6";
|
||||
};
|
||||
|
||||
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.
|
||||
'';
|
||||
};
|
||||
}
|
@ -20308,6 +20308,8 @@ with pkgs;
|
||||
|
||||
vessel = pkgsi686Linux.callPackage ../games/vessel { };
|
||||
|
||||
vitetris = callPackage ../games/vitetris { };
|
||||
|
||||
vms-empire = callPackage ../games/vms-empire { };
|
||||
|
||||
voxelands = callPackage ../games/voxelands {
|
||||
|
Loading…
Reference in New Issue
Block a user