abbaye-des-morts: init at 2.0.1
This commit is contained in:
parent
c17e93380f
commit
ac6e484cf8
35
pkgs/games/abbaye-des-morts/default.nix
Normal file
35
pkgs/games/abbaye-des-morts/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, SDL2, SDL2_image, SDL2_mixer }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "abbaye-des-morts";
|
||||||
|
version = "2.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nevat";
|
||||||
|
repo = "abbayedesmorts-gpl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1pwqf7r9bqb2p3xrw9i7y8pgr1401fy3mnnqpb1qkhmdl3gqi9hb";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ SDL2 SDL2_image SDL2_mixer ];
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=$(out)" "DESTDIR=" ];
|
||||||
|
|
||||||
|
preBuild = stdenv.lib.optionalString stdenv.cc.isClang
|
||||||
|
''
|
||||||
|
substituteInPlace Makefile \
|
||||||
|
--replace -fpredictive-commoning ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://locomalito.com/abbaye_des_morts.php";
|
||||||
|
description = "A retro arcade video game";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.marius851000 ];
|
||||||
|
};
|
||||||
|
}
|
@ -21182,6 +21182,8 @@ in
|
|||||||
|
|
||||||
_90secondportraits = callPackage ../games/90secondportraits { love = love_0_10; };
|
_90secondportraits = callPackage ../games/90secondportraits { love = love_0_10; };
|
||||||
|
|
||||||
|
abbaye-des-morts = callPackage ../games/abbaye-des-morts { };
|
||||||
|
|
||||||
adom = callPackage ../games/adom { };
|
adom = callPackage ../games/adom { };
|
||||||
|
|
||||||
airstrike = callPackage ../games/airstrike { };
|
airstrike = callPackage ../games/airstrike { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user