2023-01-19 15:59:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromBitbucket
|
|
|
|
, cmake
|
2023-02-06 15:05:19 +00:00
|
|
|
, copyDesktopItems
|
2023-01-19 15:59:41 +00:00
|
|
|
, pkg-config
|
2023-02-06 15:05:19 +00:00
|
|
|
, makeWrapper
|
2023-01-19 15:59:41 +00:00
|
|
|
, zlib
|
|
|
|
, bzip2
|
|
|
|
, libjpeg
|
|
|
|
, SDL2
|
|
|
|
, SDL2_net
|
|
|
|
, SDL2_mixer
|
2023-01-27 11:56:42 +00:00
|
|
|
, gtk3
|
2023-01-19 15:59:41 +00:00
|
|
|
}:
|
2021-08-09 10:28:34 +01:00
|
|
|
|
2021-07-26 19:05:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ecwolf";
|
2023-02-05 11:56:06 +00:00
|
|
|
version = "1.4.1";
|
2021-07-26 19:05:00 +01:00
|
|
|
|
2023-01-19 15:31:54 +00:00
|
|
|
src = fetchFromBitbucket {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-02-05 11:56:06 +00:00
|
|
|
sha256 = "V2pSP8i20zB50WtUMujzij+ISSupdQQ/oCYYrOaTU1g=";
|
2021-07-26 19:05:00 +01:00
|
|
|
};
|
|
|
|
|
2023-02-06 15:05:19 +00:00
|
|
|
nativeBuildInputs = [ cmake copyDesktopItems pkg-config ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ makeWrapper ];
|
2023-01-27 11:56:42 +00:00
|
|
|
buildInputs = [ zlib bzip2 libjpeg SDL2 SDL2_net SDL2_mixer gtk3 ];
|
2021-07-26 19:05:00 +01:00
|
|
|
|
2023-02-06 15:05:19 +00:00
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework AppKit";
|
2021-07-26 19:05:00 +01:00
|
|
|
|
2023-02-04 18:11:54 +00:00
|
|
|
# ECWolf installs its binary to the games/ directory, but Nix only adds bin/
|
|
|
|
# directories to the PATH.
|
2023-02-06 15:05:19 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2023-02-04 18:11:54 +00:00
|
|
|
mv "$out/games" "$out/bin"
|
2023-02-06 15:05:19 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
mkdir -p $out/{Applications,bin}
|
|
|
|
cp -R ecwolf.app $out/Applications
|
|
|
|
makeWrapper $out/{Applications/ecwolf.app/Contents/MacOS,bin}/ecwolf
|
2023-02-04 18:11:54 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-26 19:05:00 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Enhanched SDL-based port of Wolfenstein 3D for various platforms";
|
|
|
|
homepage = "https://maniacsvault.net/ecwolf/";
|
|
|
|
license = licenses.gpl2Plus;
|
2023-01-31 21:17:56 +00:00
|
|
|
maintainers = with maintainers; [ jayman2000 sander ];
|
2021-07-26 19:05:00 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|