summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-07-10 13:12:46 +0200
committerPeter Simons <simons@cryp.to>2018-07-10 20:10:27 +0200
commit1cc53afdd245dabf4ebb4c3ca1976996d6cd1039 (patch)
treef869d6158451e032077cf4dfddbf36cc5e41da7e /pkgs
parent0c45d331c7bd893793e2b49dfd07422656942d85 (diff)
downloadnixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar.gz
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar.bz2
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar.lz
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar.xz
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.tar.zst
nixpkgs-1cc53afdd245dabf4ebb4c3ca1976996d6cd1039.zip
haskell-xmonad-contrib: apply patches to fix the build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 2d6e38b7c61..ed324e01855 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -48,6 +48,9 @@ self: super: {
     sha256 = "1mj3k0w8aqyy71kmc71vzhgxmr4h6i5b3sykwflzays50grjm5jp";
   })) self.semigroups;
 
+  # https://github.com/xmonad/xmonad-contrib/issues/235
+  xmonad-contrib = doJailbreak (appendPatch super.xmonad-contrib ./patches/xmonad-contrib-ghc-8.4.1-fix.patch);
+
   # This package desperately needs a maintainer.
   xmobar = super.xmobar.overrideScope (self: super: {
     hinotify = self.hinotify_0_3_9;  # https://github.com/jaor/xmobar/issues/356
@@ -55,8 +58,4 @@ self: super: {
   });
   hinotify_0_3_9 = dontCheck (doJailbreak super.hinotify_0_3_9); # allow async 2.2.x
 
-
-##   # https://github.com/xmonad/xmonad-contrib/issues/235
-##   xmonad-contrib = doJailbreak (appendPatch super.xmonad-contrib ./patches/xmonad-contrib-ghc-8.4.1-fix.patch);
-
 }