Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / fltrator / default.nix
blobb1a2bb6b8c0ddb220bbc91275884bc234f42e6ce
1 { lib, stdenv, fetchurl, unzip, fltk, which, libjpeg }:
3 stdenv.mkDerivation rec {
4   pname = "fltrator";
5   version = "2.3";
7   src = fetchurl {
8     url = "mirror://sourceforge/fltrator/fltrator-${version}-code.zip";
9     sha256 = "125aqq1sfrm0c9cm6gyylwdmc8xrb0rjf563xvw7q28sdbl6ayp7";
10   };
12   buildInputs = [ fltk libjpeg ];
13   nativeBuildInputs = [ unzip which ];
15   postPatch = ''
16     substituteInPlace src/fltrator.cxx\
17       --replace 'home += "fltrator/"' "home = \"$out/fltrator/\""
18     substituteInPlace src/fltrator-landscape.cxx\
19       --replace 'home += "fltrator/"' "home = \"$out/fltrator/\""
20     substituteInPlace rsc/fltrator.desktop \
21       --replace 'Exec=fltrator' "Exec=$out/bin/fltrator"
22   '';
24   dontAddPrefix = true;
26   makeFlags = [ "HOME=$(out)" "RSC_PATH=$(out)/fltrator"];
28   postInstall = ''
29     mkdir -p $out/share/applications
30     cp rsc/fltrator.desktop $out/share/applications
31     mkdir -p $out/share/icons/hicolor/128x128/apps/
32     cp rsc/fltrator-128.png $out/share/icons/hicolor/128x128/apps/fltrator2.png
33   '';
35   meta = with lib; {
36     description = "A simple retro style arcade side-scroller game";
37     longDescription = '' FLTrator is a simple retro style arcade side-scroller game in which you steer a spaceship through a landscape with hostile rockets and other obstacles.
38     It has ten different levels and a level editor to create new levels or modify the existing.''; # from https://libregamewiki.org/FLTrator
39     homepage = "https://fltrator.sourceforge.net/";
40     platforms = platforms.linux;
41     maintainers = [ maintainers.marius851000 ];
42     license = licenses.gpl3;
43   };