xjump: taking review into account
This commit is contained in:
parent
8566d5f9ad
commit
d697a404ab
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, gcc, autoconf, automake, xorg, ... }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libX11, libXt, libXpm, libXaw, localStateDir?"/var" }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "xjump-${version}";
|
name = "xjump-${version}";
|
||||||
@ -9,19 +9,13 @@ stdenv.mkDerivation rec {
|
|||||||
rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
|
rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
|
||||||
sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
|
sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
|
||||||
};
|
};
|
||||||
buildInputs = [ gcc autoconf automake xorg.libX11 xorg.libXt xorg.libXpm xorg.libXaw ];
|
nativeBuildInputs = [ autoconf automake ];
|
||||||
preConfigure = ''
|
buildInputs = [ libX11 libXt libXpm libXaw ];
|
||||||
autoreconf --install
|
preConfigure = "autoreconf --install";
|
||||||
'';
|
configureFlags = ["--localstatedir=${localStateDir}"];
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
mkdir -p $out/share/xjump
|
|
||||||
install -m 755 xjump $out/bin
|
|
||||||
cp -R themes $out/share/xjump
|
|
||||||
'';
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "The falling tower game";
|
description = "The falling tower game";
|
||||||
maintainers = with maintainers; [ pmeunier ];
|
maintainers = with maintainers; [ pmeunier ];
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user