Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / gnujump / default.nix
blob1c918395d40be0bb1c9d92ed11198c17e03d6aa8
1 { lib, stdenv, makeDesktopItem, copyDesktopItems, fetchurl, SDL, SDL_image, SDL_mixer }:
3 stdenv.mkDerivation rec {
4   pname = "gnujump";
5   version = "1.0.8";
6   src = fetchurl {
7     url = "mirror://gnu/gnujump/${pname}-${version}.tar.gz";
8     sha256 = "05syy9mzbyqcfnm0hrswlmhwlwx54f0l6zhcaq8c1c0f8dgzxhqk";
9   };
11   nativeBuildInputs = [ copyDesktopItems ];
12   buildInputs = [ SDL SDL_image SDL_mixer ];
14   NIX_LDFLAGS = "-lm";
16   desktopItems = [ (makeDesktopItem {
17     name = "gnujump";
18     exec = "gnujump";
19     icon = "gnujump";
20     desktopName = "GNUjump";
21     comment     = "Jump up the tower to survive";
22     categories  = [ "Game" "ArcadeGame" ];
23   }) ];
25   postInstall = ''
26     install -Dm644 ${./gnujump.xpm} $out/share/pixmaps/gnujump.xpm
27   '';
29   meta = with lib; {
30     homepage = "https://jump.gnu.sinusoid.es/index.php?title=Main_Page";
31     description = "A clone of the simple yet addictive game Xjump";
32     longDescription = ''
33       The goal in this game is to jump to the next floor trying not to fall
34       down. As you go upper in the Falling Tower the floors will fall faster.
35       Try to survive longer get upper than anyone. It might seem too simple but
36       once you've tried you'll realize how addictive this is.
37     '';
38     license = licenses.gpl3;
39     maintainers = with maintainers; [ fgaz ];
40     platforms = platforms.linux;
41   };