3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome/games/gnome-chess/default.nix

69 lines
1.2 KiB
Nix
Raw Normal View History

2021-03-21 06:36:31 +00:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
, vala
, pkg-config
, wrapGAppsHook4
, gobject-introspection
, gettext
, itstool
, libxml2
, python3
, gnome
2021-03-21 06:36:31 +00:00
, glib
, gtk4
, librsvg
}:
stdenv.mkDerivation rec {
pname = "gnome-chess";
2021-10-31 10:55:29 +00:00
version = "41.1";
src = fetchurl {
2021-03-21 06:36:31 +00:00
url = "mirror://gnome/sources/gnome-chess/${lib.versions.major version}/${pname}-${version}.tar.xz";
2021-10-31 10:55:29 +00:00
sha256 = "62GYhlljlrQDOj8oo8LjAEtU6+Gzi0DWQiwXufLMF9A=";
};
2021-03-21 06:36:31 +00:00
nativeBuildInputs = [
meson
ninja
vala
pkg-config
gettext
itstool
libxml2
python3
wrapGAppsHook4
gobject-introspection
];
buildInputs = [
glib
gtk4
librsvg
gnome.adwaita-icon-theme
2021-03-21 06:36:31 +00:00
];
2018-03-14 01:02:59 +00:00
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
passthru = {
updateScript = gnome.updateScript {
2018-03-14 01:02:59 +00:00
packageName = "gnome-chess";
attrPath = "gnome.gnome-chess";
2018-03-14 01:02:59 +00:00
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Chess";
description = "Play the classic two-player boardgame of chess";
maintainers = teams.gnome.members;
2021-03-21 06:36:31 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}