summaryrefslogtreecommitdiff
path: root/pkgs/desktops/gnome/games/aisleriot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/games/aisleriot/default.nix')
-rw-r--r--pkgs/desktops/gnome/games/aisleriot/default.nix76
1 files changed, 76 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome/games/aisleriot/default.nix b/pkgs/desktops/gnome/games/aisleriot/default.nix
new file mode 100644
index 000000000000..bdd7c9cc1a32
--- /dev/null
+++ b/pkgs/desktops/gnome/games/aisleriot/default.nix
@@ -0,0 +1,76 @@
+{ lib, stdenv
+, fetchFromGitLab
+, nix-update-script
+, pkg-config
+, itstool
+, gtk3
+, wrapGAppsHook
+, meson
+, librsvg
+, libxml2
+, desktop-file-utils
+, pysolfc
+, guile
+, libcanberra-gtk3
+, ninja
+, appstream-glib
+, yelp-tools
+}:
+
+stdenv.mkDerivation rec {
+ pname = "aisleriot";
+ version = "3.22.16";
+
+ src = fetchFromGitLab {
+ domain = "gitlab.gnome.org";
+ owner = "GNOME";
+ repo = pname;
+ rev = version;
+ sha256 = "0arjnm5kgnb4pir53hlm94iym80d0srs256sm2hwhwwc5fr1w79i";
+ };
+
+ nativeBuildInputs = [
+ wrapGAppsHook
+ meson
+ ninja
+ appstream-glib
+ pkg-config
+ itstool
+ libxml2
+ desktop-file-utils
+ yelp-tools
+ ];
+
+ buildInputs = [
+ gtk3
+ librsvg
+ guile
+ libcanberra-gtk3
+ pysolfc
+ ];
+
+ prePatch = ''
+ patchShebangs cards/meson_svgz.sh
+ patchShebangs data/meson_desktopfile.py
+ patchShebangs data/icons/meson_updateiconcache.py
+ patchShebangs src/lib/meson_compileschemas.py
+ '';
+
+ mesonFlags = [
+ "-Dtheme_kde=false"
+ ];
+
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = "gnome.${pname}";
+ };
+ };
+
+ meta = with lib; {
+ homepage = "https://wiki.gnome.org/Apps/Aisleriot";
+ description = "A collection of patience games written in guile scheme";
+ maintainers = teams.gnome.members;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ };
+}