summaryrefslogtreecommitdiff
path: root/pkgs/desktops/gnome/games/gnome-chess/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/games/gnome-chess/default.nix')
-rw-r--r--pkgs/desktops/gnome/games/gnome-chess/default.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome/games/gnome-chess/default.nix b/pkgs/desktops/gnome/games/gnome-chess/default.nix
new file mode 100644
index 000000000000..c632bce407bc
--- /dev/null
+++ b/pkgs/desktops/gnome/games/gnome-chess/default.nix
@@ -0,0 +1,68 @@
+{ 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;
+ };
+}