biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / games / blobwars / default.nix
blob6c01e8d5a60444a2eed67409842317d2d415bc77
1 { stdenv, lib, fetchurl, pkg-config, gettext, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "blobwars";
5   version = "2.00";
7   src = fetchurl {
8     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "c406279f6cdf2aed3c6edb8d8be16efeda0217494acd525f39ee2bd3e77e4a99";
10   };
12   patches = [ ./blobwars-2.00-glibc-2.38.patch ];
14   nativeBuildInputs = [ pkg-config gettext ];
15   buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf zlib ];
16   env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error" ];
18   makeFlags = [ "PREFIX=$(out)" "RELEASE=1" ];
20   postInstall = ''
21     install -Dm755 $out/games/blobwars -t $out/bin
22     rm -r $out/games
23     cp -r {data,gfx,sound,music} $out/share/games/blobwars/
24     # fix world readable bit
25     find $out/share/games/blobwars/. -type d -exec chmod 755 {} +
26     find $out/share/games/blobwars/. -type f -exec chmod 644 {} +
27   '';
29   meta = with lib; {
30     description = "Platform action game featuring a blob with lots of weapons";
31     mainProgram = "blobwars";
32     homepage = "https://www.parallelrealities.co.uk/games/metalBlobSolid/";
33     license = with licenses; [ gpl2Plus free ];
34     maintainers = with maintainers; [ iblech ];
35     platforms = platforms.unix;
36   };