Skip to content

Commit

Permalink
Order independent haskell-nix-crypto overlay (#553)
Browse files Browse the repository at this point in the history
Take advantage of
input-output-hk/haskell.nix#2043 to allow the
haskell-nix-crypto overlay to come before or after the haskell.nix
overlays.
  • Loading branch information
hamishmack authored Sep 1, 2023
1 parent e5b4889 commit 4b34260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions overlays/haskell-nix-crypto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
final: prev: {
# Make libraries from the crypto overlays available to
# haskell-nix's pkg-config map when solving for dependencies with cabal.
haskell-nix = prev.haskell-nix // {
extraPkgconfigMappings = prev.haskell-nix.extraPkgconfigMappings // {
haskell-nix = prev.haskell-nix or {} // {
extraPkgconfigMappings = prev.haskell-nix.extraPkgconfigMappings or {} // {
"libblst" = [ "libblst" ];
# map libsoidum to our libsodium-vrf, if you include the iohk-nix
# crypto overlay, you _do_ want the custom libsoidum.
Expand Down

0 comments on commit 4b34260

Please sign in to comment.