summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-10-07 14:03:16 +0200
committerPeter Simons <simons@cryp.to>2019-10-07 20:51:00 +0200
commit261482e243d2b2dcb58301c908c66908bbff4925 (patch)
tree9684e722d0f3c2186c27e60681abd0bd81ea3a26
parent7233426fe291e1bc5ca7fe172513689a7e1c6469 (diff)
downloadnixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar.gz
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar.bz2
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar.lz
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar.xz
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.tar.zst
nixpkgs-261482e243d2b2dcb58301c908c66908bbff4925.zip
haskell-gtk3: apply patch to fix the build
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 748e7fa7d35..441bbc493d7 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1229,11 +1229,15 @@ self: super: {
     sha256 = "1s72s683p2n5ri1a030zywciq0020ms64cmsy48axndp6dp9vri7";
     stripLen = 1;
   });
-  # https://github.com/gtk2hs/gtk2hs/issues/276
   pango = appendPatch super.pango (pkgs.fetchpatch {
     url = https://github.com/gtk2hs/gtk2hs/pull/282/commits/0a6016e89ce98415bb395ca0cfafeaacf3b3fce6.patch;
     sha256 = "1n9spriinyif4h1h9mfj9k87b80kcs39qlym5yxnxxg0yszqqcpc";
     stripLen = 1;
   });
+  gtk3 = appendPatch super.gtk3 (pkgs.fetchpatch {
+    url = https://github.com/gtk2hs/gtk2hs/pull/282/commits/cc0d8e8ef9bdffc776182a1f92225750bfea8f57.patch;
+    sha256 = "175zs694d04d7jfj8xq33rizw38bc3ninr00n26jyrg39vgkmc5j";
+    stripLen = 1;
+  });
 
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super