ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / blobwars / default.nix
blobb99c9f2b8e3607092d8d51044d2d49fb6e08f661
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   nativeBuildInputs = [ pkg-config gettext ];
13   buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf zlib ];
14   NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
16   makeFlags = [ "PREFIX=$(out)" "RELEASE=1" ];
18   postInstall = ''
19     install -Dm755 $out/games/blobwars -t $out/bin
20     rm -r $out/games
21     cp -r {data,gfx,sound,music} $out/share/games/blobwars/
22     # fix world readable bit
23     find $out/share/games/blobwars/. -type d -exec chmod 755 {} +
24     find $out/share/games/blobwars/. -type f -exec chmod 644 {} +
25   '';
27   meta = with lib; {
28     description = "Platform action game featuring a blob with lots of weapons";
29     homepage = "https://www.parallelrealities.co.uk/games/metalBlobSolid/";
30     license = with licenses; [ gpl2Plus free ];
31     maintainers = with maintainers; [ iblech ];
32     platforms = platforms.unix;
33   };