nixpkgs/pkgs/desktops/gnome-3/games/gnome-taquin/default.nix

36 lines
1.0 KiB
Nix
Raw Normal View History

{ 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
}:
stdenv.mkDerivation rec {
pname = "gnome-taquin";
version = "3.34.3";
src = fetchurl {
url = "mirror://gnome/sources/gnome-taquin/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0njlcqb316qbi0dm2j39s42ca8gc2fqmk5aqill5gpb57znb4d81";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "gnome-taquin"; attrPath = "gnome3.gnome-taquin"; };
};
2019-03-12 15:42:04 +00:00
nativeBuildInputs = [
pkgconfig wrapGAppsHook meson ninja python3
gettext itstool libxml2 vala desktop-file-utils
];
buildInputs = [
2019-09-02 17:45:21 +01:00
gtk3 librsvg gsound
2019-03-12 15:42:04 +00:00
gnome3.adwaita-icon-theme
];
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;
};
}