69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchurl
|
||
|
, meson
|
||
|
, ninja
|
||
|
, vala
|
||
|
, pkg-config
|
||
|
, wrapGAppsHook4
|
||
|
, gobject-introspection
|
||
|
, gettext
|
||
|
, itstool
|
||
|
, libxml2
|
||
|
, python3
|
||
|
, gnome
|
||
|
, glib
|
||
|
, gtk4
|
||
|
, librsvg
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "gnome-chess";
|
||
|
version = "40.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/gnome-chess/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "132nc96z0bryyi9d5gljsbwsa71rl8wm5w57jbhpwiv4fyjhgybk";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
vala
|
||
|
pkg-config
|
||
|
gettext
|
||
|
itstool
|
||
|
libxml2
|
||
|
python3
|
||
|
wrapGAppsHook4
|
||
|
gobject-introspection
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
glib
|
||
|
gtk4
|
||
|
librsvg
|
||
|
gnome.adwaita-icon-theme
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x meson_post_install.py
|
||
|
patchShebangs meson_post_install.py
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome.updateScript {
|
||
|
packageName = "gnome-chess";
|
||
|
attrPath = "gnome.gnome-chess";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://wiki.gnome.org/Apps/Chess";
|
||
|
description = "Play the classic two-player boardgame of chess";
|
||
|
maintainers = teams.gnome.members;
|
||
|
license = licenses.gpl3Plus;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|