nixpkgs/pkgs/desktops/gnome/games/gnome-chess/default.nix
2023-04-06 01:35:26 +02:00

67 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchurl
, meson
, ninja
, vala
, pkg-config
, desktop-file-utils
, wrapGAppsHook4
, gobject-introspection
, gettext
, itstool
, libxml2
, gnome
, glib
, gtk4
, libadwaita
, librsvg
, pango
}:
stdenv.mkDerivation rec {
pname = "gnome-chess";
version = "43.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-chess/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "NIUI+PbnRRwHNE/6egmpkM8dKIO8z1M0CdvgKSaNSfI=";
};
nativeBuildInputs = [
meson
ninja
vala
pkg-config
gettext
itstool
libxml2
desktop-file-utils
wrapGAppsHook4
gobject-introspection
];
buildInputs = [
glib
gtk4
libadwaita
librsvg
pango
];
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.unix;
};
}