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 16:45:21 +00: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";
2020-08-25 07:31:54 +00:00
version = "3.38.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-taquin/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-08-25 07:31:54 +00:00
sha256 = "07xpvyks1r5wxvjz1n07g7khxa02smhq4kykc4d22fmzr3yka077";
};
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 16:45:21 +00: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 = teams.gnome.members;
license = licenses.gpl3;
platforms = platforms.linux;
};
}