snake4: init at 1.0.14
This commit is contained in:
parent
d1c2fd81f6
commit
1e3a12bf22
27
pkgs/games/snake4/default.nix
Normal file
27
pkgs/games/snake4/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl, shhmsg, shhopt, xlibs }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "snake4-1.0.14";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
||||||
|
sha256 = "14cng9l857np42zixp440mbc8y5675frb6lhsds53j1cws9cncw9";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with xlibs; [ shhmsg shhopt libX11 libXt libXpm libXaw libXext];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
substituteInPlace Makefile --replace "-o \$(OWNER) -g \$(GROUP)" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
installFlags = [ "INSTLIBDIR=$(out)/lib"
|
||||||
|
"INSTBINDIR=$(out)/bin"
|
||||||
|
"INSTMANDIR=$(out)/man" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A game starring a fruit-eating snake";
|
||||||
|
homepage = http://shh.thathost.com/pub-unix/html/snake4.html;
|
||||||
|
license = licenses.artistic1;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -13648,6 +13648,8 @@ let
|
|||||||
# get binaries without data built by Hydra
|
# get binaries without data built by Hydra
|
||||||
simutrans_binaries = lowPrio simutrans.binaries;
|
simutrans_binaries = lowPrio simutrans.binaries;
|
||||||
|
|
||||||
|
snake4 = callPackage ../games/snake4 { };
|
||||||
|
|
||||||
soi = callPackage ../games/soi {};
|
soi = callPackage ../games/soi {};
|
||||||
|
|
||||||
# You still can override by passing more arguments.
|
# You still can override by passing more arguments.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user