nixpkgs/pkgs/desktops/gnome-3/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
, gnome3
, glib
, gtk4
, librsvg
}:
stdenv.mkDerivation rec {
pname = "gnome-chess";
2021-03-21 06:36:31 +00:00
version = "40.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";
sha256 = "132nc96z0bryyi9d5gljsbwsa71rl8wm5w57jbhpwiv4fyjhgybk";
};
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
gnome3.adwaita-icon-theme
];
2018-03-14 01:02:59 +00:00
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
passthru = {
2018-03-14 01:02:59 +00:00
updateScript = gnome3.updateScript {
packageName = "gnome-chess";
attrPath = "gnome3.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;
2021-03-21 06:36:31 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}