mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
xgalagapp: init at 0.9
This commit is contained in:
parent
f7455fa165
commit
f7c66bf8ea
37
pkgs/games/xgalaga++/default.nix
Normal file
37
pkgs/games/xgalaga++/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, libX11
|
||||
, libXpm
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xgalaga++";
|
||||
version = "0.9";
|
||||
src = fetchurl {
|
||||
url = "https://marc.mongenet.ch/OSS/XGalaga/xgalaga++_${version}.tar.gz";
|
||||
sha256 = "sha256-yNtLuYCMHLvQAVM7CDGPardrh3q27TE9l31qhUbMf8k=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libX11
|
||||
libXpm
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
make all HIGH_SCORES_FILE=.xgalaga++.scores
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/man
|
||||
mv xgalaga++ $out/bin
|
||||
mv xgalaga++.6x $out/share/man
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://marc.mongenet.ch/OSS/XGalaga/";
|
||||
description = "XGalaga++ is a classic single screen vertical shoot ’em up. It is inspired by XGalaga and reuses most of its sprites.";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -35791,6 +35791,8 @@ with pkgs;
|
||||
|
||||
xcowsay = callPackage ../games/xcowsay { };
|
||||
|
||||
xgalagapp = callPackage ../games/xgalaga++ { };
|
||||
|
||||
xjump = callPackage ../games/xjump { };
|
||||
|
||||
xmoto = callPackage ../games/xmoto { };
|
||||
|
Loading…
Reference in New Issue
Block a user