about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-03-26 06:49:35 +0200
committerGitHub <noreply@github.com>2022-03-26 06:49:35 +0200
commit72b0c4437b8303e0046ea8d1f979df7ddba33e73 (patch)
tree17182fa38b5af6af945aa2e5ee2f2cdd3c44fb93 /pkgs/games
parent81f9d0b0ff6de96a1855692027ec8ef7f20e8bf7 (diff)
parent1c46c8f7d854fd65853bacbbcf9b8e14746b7b7d (diff)
downloadnixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar.gz
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar.bz2
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar.lz
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar.xz
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.tar.zst
nixlib-72b0c4437b8303e0046ea8d1f979df7ddba33e73.zip
Merge pull request #165729 from bobby285271/gnonograms
gnonograms: fix build with meson 0.61
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gnonograms/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/games/gnonograms/default.nix b/pkgs/games/gnonograms/default.nix
index cfe1085ca27b..21f522d3418f 100644
--- a/pkgs/games/gnonograms/default.nix
+++ b/pkgs/games/gnonograms/default.nix
@@ -1,6 +1,7 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, fetchpatch
 , vala
 , meson
 , ninja
@@ -27,6 +28,15 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-2uXaybpCAm9cr0o7bqfhgD7mMNPwtv1X/PgnFnSDOl0=";
   };
 
+  patches = [
+    # Fix build with meson 0.61, can be removed on next release
+    # https://github.com/jeremypw/gnonograms/pull/45
+    (fetchpatch {
+      url = "https://github.com/jeremypw/gnonograms/commit/0e90d8ff42d64a94002ec8500889bc4d7e06c1b6.patch";
+      sha256 = "sha256-G/yqsZFmOA69A3E2CROMYAS5vmok/K5l1S/M2m8DMh4=";
+    })
+  ];
+
   postPatch = ''
     patchShebangs meson/post_install.py
   '';