snake4: init at 1.0.14

This commit is contained in:
Pascal Wittmann 2015-07-09 15:24:00 +02:00
parent d1c2fd81f6
commit 1e3a12bf22
2 changed files with 29 additions and 0 deletions

View 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;
};
}

View file

@ -13648,6 +13648,8 @@ let
# get binaries without data built by Hydra
simutrans_binaries = lowPrio simutrans.binaries;
snake4 = callPackage ../games/snake4 { };
soi = callPackage ../games/soi {};
# You still can override by passing more arguments.