nixpkgs/pkgs/games/fish-fillets-ng/default.nix

40 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-05 02:08:27 -07:00
{stdenv, fetchurl, makeDesktopItem, copyDesktopItems, SDL, lua5_1, pkgconfig, SDL_mixer, SDL_image, SDL_ttf}:
2014-11-08 11:34:56 -08:00
stdenv.mkDerivation rec {
pname = "fish-fillets-ng";
2014-11-08 11:34:56 -08:00
version = "1.0.1";
src = fetchurl {
url = "mirror://sourceforge/fillets/fillets-ng-${version}.tar.gz";
sha256 = "1nljp75aqqb35qq3x7abhs2kp69vjcj0h1vxcpdyn2yn2nalv6ij";
};
data = fetchurl {
url = "mirror://sourceforge/fillets/fillets-ng-data-${version}.tar.gz";
sha256 = "169p0yqh2gxvhdilvjc2ld8aap7lv2nhkhkg4i1hlmgc6pxpkjgh";
};
2020-05-05 02:08:27 -07:00
nativeBuildInputs = [ pkgconfig copyDesktopItems ];
buildInputs = [SDL lua5_1 SDL_mixer SDL_image SDL_ttf];
2020-05-05 02:08:27 -07:00
desktopItems = [ (makeDesktopItem {
name = "fish-fillets-ng";
exec = "fillets";
icon = "fish-fillets-ng";
desktopName = "Fish Fillets";
comment = "Puzzle game about witty fish saving the world sokoban-style";
categories = "Game;LogicGame;";
}) ];
2014-11-08 11:34:56 -08:00
postInstall=''
2020-05-05 02:08:27 -07:00
# Install game data
2014-11-08 11:34:56 -08:00
mkdir -p "$out/share/games/fillets-ng/"
tar -xf ${data} -C "$out/share/games/fillets-ng/" --strip-components=1
2020-05-05 02:08:27 -07:00
# Install game icon
install -Dm644 ${./icon.xpm} $out/share/pixmaps/fish-fillets-ng.xpm
2014-11-08 11:34:56 -08:00
'';
meta = {
inherit version;
description = ''A puzzle game'';
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = "http://fillets.sourceforge.net/";
2014-11-08 11:34:56 -08:00
};
}