mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
36 lines
889 B
Nix
36 lines
889 B
Nix
{ lib, stdenv, fetchFromGitHub, SDL2, SDL2_image, SDL2_mixer }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abbaye-des-morts";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nevat";
|
|
repo = "abbayedesmorts-gpl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/RAtOL51o3/5pDgqPLJMTtDFY9BpIowM5MpJ88+v/Zs=";
|
|
};
|
|
|
|
buildInputs = [ SDL2 SDL2_image SDL2_mixer ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" "DESTDIR=" ];
|
|
|
|
preBuild = lib.optionalString stdenv.cc.isClang
|
|
''
|
|
substituteInPlace Makefile \
|
|
--replace -fpredictive-commoning ""
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/applications
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://locomalito.com/abbaye_des_morts.php";
|
|
description = "Retro arcade video game";
|
|
mainProgram = "abbayev2";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.marius851000 ];
|
|
};
|
|
}
|