2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2019-09-02 17:45:21 +01:00
|
|
|
, librsvg, gsound, gettext, itstool, libxml2
|
2019-03-12 15:42:04 +00:00
|
|
|
, meson, ninja, vala, python3, desktop-file-utils
|
|
|
|
}:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-taquin";
|
2020-01-21 16:09:46 +00:00
|
|
|
version = "3.34.3";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-taquin/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-01-21 16:09:46 +00:00
|
|
|
sha256 = "0njlcqb316qbi0dm2j39s42ca8gc2fqmk5aqill5gpb57znb4d81";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "gnome-taquin"; attrPath = "gnome3.gnome-taquin"; };
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2019-03-12 15:42:04 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig wrapGAppsHook meson ninja python3
|
|
|
|
gettext itstool libxml2 vala desktop-file-utils
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = [
|
2019-09-02 17:45:21 +01:00
|
|
|
gtk3 librsvg gsound
|
2019-03-12 15:42:04 +00:00
|
|
|
gnome3.adwaita-icon-theme
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Taquin;
|
|
|
|
description = "Move tiles so that they reach their places";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|