nixpkgs/pkgs/games/snake4/default.nix
Vladimír Čunát 88c9f8b574 xlibs: replace occurrences by xorg
This seems to have been confusing people, using both xlibs and xorg, etc.
- Avoided renaming local (and different) xlibs binding in gcc*.
- Fixed cases where both xorg and xlibs were used.
Hopefully everything still works as before.
2015-09-15 12:54:34 +02:00

28 lines
798 B
Nix

{ stdenv, fetchurl, shhmsg, shhopt, xorg }:
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 xorg; [ 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;
};
}