File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 33
33
( final : prev : {
34
34
haskell-nix = prev . haskell-nix // {
35
35
inherit checkMaterialization ;
36
+ extraPkgconfigMappings = prev . haskell-nix . extraPkgconfigMappings or { } // {
37
+ "libsodium" = [ "libsodium-18" ] ;
38
+ } ;
36
39
} ;
37
- libsodium = final . callPackage ( inputs . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ;
40
+ libsodium-18 = final . callPackage ( inputs . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ;
38
41
} )
39
42
] ;
40
43
# Needed for dwarf tests
Original file line number Diff line number Diff line change 7
7
permittedInsecurePackages = [ "libdwarf-20210528" "libdwarf-20181024" "dwarfdump-20181024" ] ;
8
8
} ;
9
9
overlays = haskellNix . nixpkgsArgs . overlays ++ [
10
- ( final : _prev : {
11
- libsodium = final . callPackage ( haskellNix . sources . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ;
10
+ ( final : prev : {
11
+ haskell-nix = prev . haskell-nix // {
12
+ extraPkgconfigMappings = prev . haskell-nix . extraPkgconfigMappings or { } // {
13
+ "libsodium" = [ "libsodium-18" ] ;
14
+ } ;
15
+ } ;
16
+ libsodium-18 = final . callPackage ( haskellNix . sources . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ;
12
17
} )
13
18
] ;
14
19
}
You can’t perform that action at this time.
0 commit comments