nixpkgs/pkgs/games/xjump/default.nix
John Ericson 0828e2d8c3 treewide: Remove usage of remaining redundant platform compatability stuff
Want to get this out of here for 18.09, so it can be deprecated
thereafter.
2018-08-30 17:20:32 -04:00

28 lines
859 B
Nix

{ stdenv, fetchFromGitHub, autoconf, automake, libX11, libXt, libXpm, libXaw, localStateDir?null }:
stdenv.mkDerivation rec {
name = "xjump-${version}";
version = "2.9.3";
src = fetchFromGitHub {
owner = "hugomg";
repo = "xjump";
rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
};
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libX11 libXt libXpm libXaw ];
preConfigure = "autoreconf --install";
patches = if stdenv.buildPlatform.isDarwin then [ ./darwin.patch ] else [];
configureFlags =
if localStateDir != null then
["--localstatedir=${localStateDir}"]
else
[];
meta = with stdenv.lib; {
description = "The falling tower game";
license = licenses.gpl2;
maintainers = with maintainers; [ pmeunier ];
};
}