File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 29
29
( final : prev : {
30
30
haskell-nix = prev . haskell-nix // {
31
31
inherit checkMaterialization ;
32
- extraPkgconfigMappings = prev . haskell-nix . extraPkgconfigMappings or { } // {
33
- "libsodium" = [ "libsodium-18" ] ;
34
- } ;
35
32
} ;
36
- libsodium-18 = ( final . callPackage ( inputs . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ) . overrideAttrs ( _ : { dontDisableStatic = true ; } ) ;
37
33
} )
34
+ ( import ./test/overlay.nix )
38
35
] ;
39
36
# Needed for dwarf tests
40
37
config = haskellNix . config // {
Original file line number Diff line number Diff line change
1
+ final : prev : {
2
+ haskell-nix = prev . haskell-nix // {
3
+ extraPkgconfigMappings = prev . haskell-nix . extraPkgconfigMappings or { } // {
4
+ "libsodium" = [ "libsodium-18" ] ;
5
+ } ;
6
+ } ;
7
+ libsodium-18 = ( final . callPackage ( final . haskell-nix . sources . nixpkgs-2311 + "/pkgs/development/libraries/libsodium" ) { } ) . overrideAttrs ( _ : { dontDisableStatic = true ; } ) ;
8
+ }
You can’t perform that action at this time.
0 commit comments