2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, shhmsg, shhopt, xorg }:
|
2015-07-09 14:24:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-22 22:44:58 +01:00
|
|
|
pname = "snake4";
|
|
|
|
version = "1.0.14";
|
2015-07-09 14:24:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-22 22:44:58 +01:00
|
|
|
url = "https://shh.thathost.com/pub-unix/files/snake4-${version}.tar.gz";
|
2015-07-09 14:24:00 +01:00
|
|
|
sha256 = "14cng9l857np42zixp440mbc8y5675frb6lhsds53j1cws9cncw9";
|
|
|
|
};
|
|
|
|
|
2017-08-28 23:34:33 +01:00
|
|
|
buildInputs = with xorg; [ shhmsg shhopt libX11 libXt libXpm libXaw libXext ];
|
2015-07-09 14:24:00 +01:00
|
|
|
|
|
|
|
preInstall = ''
|
2017-08-28 23:34:33 +01:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "-o \$(OWNER) -g \$(GROUP)" "" \
|
|
|
|
--replace "4755" "755"
|
2015-07-09 14:24:00 +01:00
|
|
|
'';
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2015-07-09 14:24:00 +01:00
|
|
|
installFlags = [ "INSTLIBDIR=$(out)/lib"
|
|
|
|
"INSTBINDIR=$(out)/bin"
|
|
|
|
"INSTMANDIR=$(out)/man" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-07-09 14:24:00 +01:00
|
|
|
description = "A game starring a fruit-eating snake";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://shh.thathost.com/pub-unix/html/snake4.html";
|
2015-07-09 14:24:00 +01:00
|
|
|
license = licenses.artistic1;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|