nixpkgs/pkgs/by-name/gn/gnome-taquin/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.6 KiB
Nix
Raw Normal View History

2024-08-11 16:34:09 +00:00
{
lib,
stdenv,
fetchurl,
fetchpatch,
pkg-config,
gnome,
adwaita-icon-theme,
gtk3,
wrapGAppsHook3,
librsvg,
gsound,
gettext,
itstool,
libxml2,
meson,
ninja,
vala,
python3,
desktop-file-utils,
2019-03-12 15:42:04 +00:00
}:
stdenv.mkDerivation rec {
pname = "gnome-taquin";
version = "3.38.1";
src = fetchurl {
2024-08-11 16:34:09 +00:00
url = "mirror://gnome/sources/gnome-taquin/${lib.versions.majorMinor version}/gnome-taquin-${version}.tar.xz";
hash = "sha256-lts9j61JeSSnOQrRCKPvckMqHWLSRWyuXhk0BXAYgU8=";
};
patches = [
# Fix build with recent Vala.
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-taquin/-/commit/99dea5e7863e112f33f16e59898c56a4f1a547b3.patch";
hash = "sha256-U7djuMhb1XJaKAPyogQjaunOkbBK24r25YD7BgH05P4=";
})
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-taquin/-/commit/66be44dc20d114e449fc33156e3939fd05dfbb16.patch";
hash = "sha256-RN41RCLHlJyXTARSH9qjsmpYi1UFeMRssoYxRsbngDQ=";
})
];
2019-03-12 15:42:04 +00:00
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
meson
ninja
python3
gettext
itstool
libxml2
vala
desktop-file-utils
2019-03-12 15:42:04 +00:00
];
2024-08-11 16:34:09 +00:00
buildInputs = [
gtk3
librsvg
gsound
adwaita-icon-theme
];
passthru = {
updateScript = gnome.updateScript { packageName = "gnome-taquin"; };
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/gnome-taquin";
description = "Move tiles so that they reach their places";
mainProgram = "gnome-taquin";
maintainers = teams.gnome.members;
license = licenses.gpl3Plus;
2022-12-07 19:43:47 +00:00
platforms = platforms.unix;
};
}