2018-09-05 02:43:54 +02:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2019-03-11 19:39:25 +01:00
|
|
|
, librsvg, libgnome-games-support, gettext, itstool, libxml2, python3, vala }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "five-or-more";
|
2019-03-11 19:39:25 +01:00
|
|
|
version = "3.32.0";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://gnome/sources/five-or-more/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-03-11 19:39:25 +01:00
|
|
|
sha256 = "0v52i22ygv6y4zqs8nyb1qmacmj9whhqrw7qss6vn7by4nsikhrn";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2019-03-11 19:39:25 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja pkgconfig gettext itstool libxml2 python3 wrapGAppsHook
|
|
|
|
vala
|
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
buildInputs = [
|
2019-02-13 22:47:50 +01:00
|
|
|
gtk3 librsvg libgnome-games-support gnome3.adwaita-icon-theme
|
2016-09-18 21:35:23 +02:00
|
|
|
];
|
|
|
|
|
2018-09-05 02:43:54 +02:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "five-or-more";
|
|
|
|
attrPath = "gnome3.five-or-more";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Five_or_more;
|
|
|
|
description = "Remove colored balls from the board by forming lines";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|