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

38 lines
1.2 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, python3 }:
2018-03-15 00:42:20 +00:00
let
pname = "swell-foop";
2019-11-03 07:53:02 +00:00
version = "3.34.1";
2018-03-15 00:42:20 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2019-11-03 07:53:02 +00:00
sha256 = "1032psxm59nissi268bh3j964m4a0n0ah4dy1pf0ph27j3zvdik1";
};
passthru = {
2018-03-15 00:42:20 +00:00
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
nativeBuildInputs = [ meson ninja vala pkgconfig wrapGAppsHook python3 itstool gettext libxml2 desktop-file-utils ];
2019-02-13 21:47:50 +00:00
buildInputs = [ glib gtk3 gnome3.adwaita-icon-theme 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;
};
}