Skip to content

Commit

Permalink
haskellPackages.http2-client: fix bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Jan 19, 2025
1 parent 3b6a2f2 commit ddd69d6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3069,4 +3069,14 @@ self: super: {
"--extra-include-dirs=${lib.getDev pkgs.opencascade-occt}/include/opencascade"
] super.opencascade-hs;

# https://github.com/haskell-grpc-native/http2-client/pull/96
http2-client = overrideCabal (drv: {
patches = drv.patches or [ ] ++ [
(pkgs.fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/haskell-grpc-native/http2-client/pull/96.patch";
sha256 = "1q0n7338rjz7zl6xpw51lljp7xw1gl128s1d5877kfil3fc23npp";
})
];
}) super.http2-client;

} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

0 comments on commit ddd69d6

Please sign in to comment.