nixpkgs/pkgs/games/abbaye-des-morts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
891 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, SDL2, SDL2_image, SDL2_mixer }:
2019-05-29 09:42:31 +00:00
stdenv.mkDerivation rec {
pname = "abbaye-des-morts";
2023-10-24 14:35:24 +00:00
version = "2.0.2";
2019-05-29 09:42:31 +00:00
src = fetchFromGitHub {
owner = "nevat";
repo = "abbayedesmorts-gpl";
rev = "v${version}";
2023-10-24 14:35:24 +00:00
sha256 = "sha256-/RAtOL51o3/5pDgqPLJMTtDFY9BpIowM5MpJ88+v/Zs=";
2019-05-29 09:42:31 +00:00
};
buildInputs = [ SDL2 SDL2_image SDL2_mixer ];
makeFlags = [ "PREFIX=$(out)" "DESTDIR=" ];
2021-01-15 04:31:39 +00:00
preBuild = lib.optionalString stdenv.cc.isClang
2019-05-29 09:42:31 +00:00
''
substituteInPlace Makefile \
--replace -fpredictive-commoning ""
'';
preInstall = ''
mkdir -p $out/bin
mkdir -p $out/share/applications
'';
meta = with lib; {
2019-05-29 09:42:31 +00:00
homepage = "https://locomalito.com/abbaye_des_morts.php";
description = "A retro arcade video game";
mainProgram = "abbayev2";
2019-05-29 09:42:31 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.marius851000 ];
};
}