nixpkgs/pkgs/games/xjump/default.nix

28 lines
843 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, libX11, libXt, libXpm, libXaw, localStateDir?null }:
2018-02-07 17:47:44 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "xjump";
2018-02-07 17:47:44 +00:00
version = "2.9.3";
src = fetchFromGitHub {
owner = "hugomg";
repo = "xjump";
rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
};
2018-02-11 16:31:35 +00:00
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libX11 libXt libXpm libXaw ];
preConfigure = "autoreconf --install";
patches = if stdenv.buildPlatform.isDarwin then [ ./darwin.patch ] else [];
2018-02-20 08:20:05 +00:00
configureFlags =
if localStateDir != null then
["--localstatedir=${localStateDir}"]
else
[];
2018-02-11 16:31:35 +00:00
meta = with lib; {
2018-02-07 17:47:44 +00:00
description = "The falling tower game";
2018-02-12 07:37:18 +00:00
license = licenses.gpl2;
2018-02-07 17:47:44 +00:00
maintainers = with maintainers; [ pmeunier ];
};
}