nixpkgs/pkgs/desktops/gnome-3/games/swell-foop/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-15 00:42:20 +00:00
{ stdenv, fetchurl, meson, ninja, pkgconfig, vala, glib, gtk3, gnome3, desktop-file-utils
, clutter, clutter-gtk, gettext, itstool, libxml2, wrapGAppsHook }:
2018-03-15 00:42:20 +00:00
let
pname = "swell-foop";
2018-03-13 01:03:18 +00:00
version = "3.28.0";
2018-03-15 00:42:20 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
2018-03-15 00:42:20 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 01:03:18 +00:00
sha256 = "1yjmg6sgi7mvp10fsqlkqshajmh8kgdmg6vyj5r8y48pv2ihfk64";
};
passthru = {
2018-03-15 00:42:20 +00:00
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
2018-03-15 00:42:20 +00:00
nativeBuildInputs = [ meson ninja vala pkgconfig wrapGAppsHook itstool gettext libxml2 desktop-file-utils ];
buildInputs = [ glib gtk3 gnome3.defaultIconTheme clutter clutter-gtk ];
2018-03-15 00:42:20 +00:00
postPatch = ''
chmod +x meson_post_install.py # patchShebangs requires executable file
patchShebangs meson_post_install.py
'';
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Swell%20Foop;
description = "Puzzle game, previously known as Same GNOME";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}