Xjump: init at 2.9.3
This commit is contained in:
parent
5704888065
commit
8566d5f9ad
27
pkgs/games/xjump/default.nix
Normal file
27
pkgs/games/xjump/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, gcc, autoconf, automake, xorg, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xjump-${version}";
|
||||
version = "2.9.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hugomg";
|
||||
repo = "xjump";
|
||||
rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
|
||||
sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
|
||||
};
|
||||
buildInputs = [ gcc autoconf automake xorg.libX11 xorg.libXt xorg.libXpm xorg.libXaw ];
|
||||
preConfigure = ''
|
||||
autoreconf --install
|
||||
'';
|
||||
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; {
|
||||
description = "The falling tower game";
|
||||
maintainers = with maintainers; [ pmeunier ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -18846,6 +18846,7 @@ with pkgs;
|
||||
tk = tk-8_5;
|
||||
};
|
||||
|
||||
xjump = callPackage ../games/xjump { };
|
||||
# TODO: the corresponding nix file is missing
|
||||
# xracer = callPackage ../games/xracer { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user