Skip to content

Commit 4fd7e26

Browse files
committed
Fix musl libsodium tests
1 parent 7feb3d6 commit 4fd7e26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"libsodium" = [ "libsodium-18" ];
3838
};
3939
};
40-
libsodium-18 = final.callPackage (inputs.nixpkgs-2311 + "/pkgs/development/libraries/libsodium") {};
40+
libsodium-18 = (final.callPackage (inputs.nixpkgs-2311 + "/pkgs/development/libraries/libsodium") {}).overrideAttrs (_: { dontDisableStatic = true; });
4141
})
4242
];
4343
# Needed for dwarf tests

test/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"libsodium" = [ "libsodium-18" ];
1414
};
1515
};
16-
libsodium-18 = final.callPackage (haskellNix.sources.nixpkgs-2311 + "/pkgs/development/libraries/libsodium") {};
16+
libsodium-18 = (final.callPackage (haskellNix.sources.nixpkgs-2311 + "/pkgs/development/libraries/libsodium") {}).overrideAttrs (_: { dontDisableStatic = true; });
1717
})
1818
];
1919
}

0 commit comments

Comments
 (0)