Skip to content

Commit

Permalink
added missing safe-exceptions deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Feb 9, 2025
1 parent ac4c736 commit c359860
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NixSupport/haskell-packages/ihp-openai.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ mkDerivation, lib, base
, text, http-streams, retry, io-streams, bytestring, aeson, HsOpenSSL
, hspec, neat-interpolation
, hspec, neat-interpolation, safe-exceptions
}:
mkDerivation {
pname = "ihp-openai";
Expand All @@ -9,7 +9,7 @@ mkDerivation {
isLibrary = true;
isExecutable = false;
libraryHaskellDepends = [
base text http-streams retry io-streams bytestring aeson HsOpenSSL
base text http-streams retry io-streams bytestring aeson HsOpenSSL safe-exceptions
];
testHaskellDepends = [
base text http-streams retry io-streams bytestring aeson HsOpenSSL hspec neat-interpolation
Expand Down
2 changes: 2 additions & 0 deletions ihp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
, with-utf8
, ihp-hsx
, ihp-postgresql-simple-extra
, safe-exceptions
, nix-gitignore
, filter
}:
Expand Down Expand Up @@ -135,6 +136,7 @@ mkDerivation {
with-utf8
ihp-hsx
ihp-postgresql-simple-extra
safe-exceptions
];
license = lib.licenses.mit;
enableLibraryForGhci = true;
Expand Down

0 comments on commit c359860

Please sign in to comment.