Merge pull request #108902 from iblech/patch-enigma
enigma: init at 1.21
This commit is contained in:
commit
8f42d3ed16
2 changed files with 34 additions and 0 deletions
32
pkgs/games/enigma/default.nix
Normal file
32
pkgs/games/enigma/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, lib, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg_utils, hicolor-icon-theme }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "enigma";
|
||||
version = "1.30-alpha";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Enigma-Game/Enigma/releases/download/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1zyk3j43gzfr1lhc6g13j7qai5f33fv5xm5735nnznaqvaz17949";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config gettext makeWrapper imagemagick ];
|
||||
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg_utils ];
|
||||
|
||||
# For some reason (might be related to the alpha status), some includes
|
||||
# which are required by lib-src/enigma-core are not picked up by the
|
||||
# configure script. Hence we add them manually.
|
||||
CPPFLAGS = "-I${SDL2.dev}/include/SDL2 -I${SDL2_ttf}/include/SDL2 -I${SDL2_image}/include/SDL2 -I${SDL2_mixer}/include/SDL2";
|
||||
|
||||
postInstall = ''
|
||||
rm -r $out/include
|
||||
wrapProgram $out/bin/enigma --prefix PATH : "${stdenv.lib.makeBinPath [ xdg_utils ]}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Puzzle game inspired by Oxyd on the Atari ST and Rock'n'Roll on the Amiga";
|
||||
license = with licenses; [ gpl2 free ]; # source + bundles libs + art
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.targetPlatform.isDarwin;
|
||||
maintainers = with maintainers; [ iblech ];
|
||||
homepage = "https://www.nongnu.org/enigma/";
|
||||
};
|
||||
}
|
|
@ -2263,6 +2263,8 @@ in
|
|||
|
||||
enca = callPackage ../tools/text/enca { };
|
||||
|
||||
enigma = callPackage ../games/enigma {};
|
||||
|
||||
ent = callPackage ../tools/misc/ent { };
|
||||
|
||||
envconsul = callPackage ../tools/system/envconsul { };
|
||||
|
|
Loading…
Reference in a new issue