summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorgtgteq <gtgteq.operator@gmail.com>2021-03-28 08:54:31 +0900
committergtgteq <gtgteq.operator@gmail.com>2021-03-28 09:01:43 +0900
commitd97d5ddd2432be1e31ebf94e0cbc768c939b70b9 (patch)
tree46fca5e84913e70c64731fc85d2a6d2b3a391fc9 /pkgs/development/haskell-modules/configuration-common.nix
parentc184de6455f6a87de2264ebbdae9d472497cd52e (diff)
downloadnixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar.gz
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar.bz2
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar.lz
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar.xz
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.tar.zst
nixpkgs-d97d5ddd2432be1e31ebf94e0cbc768c939b70b9.zip
haskellPackages.github: Loosen version bounds at 0.26
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4ff5fa76254..832feda59fc 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1717,4 +1717,11 @@ self: super: {
   # Issue reported upstream, no bug tracker url yet.
   darcs = doJailbreak super.darcs;
 
+  # Too strict version bounds on base16-bytestring and http-link-header.
+  # This patch will be merged when next release comes.
+  github = appendPatch super.github (pkgs.fetchpatch {
+    url = "https://github.com/phadej/github/commit/514b175851dd7c4a9722ff203dd6f652a15d33e8.patch";
+    sha256 = "0pmx54xd7ah85y9mfi5366wbnwrp918j0wbx8yw8hrdac92qi4gh";
+  });
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super