mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
treewide: Fix output references to openssl
This commit is contained in:
parent
07491d68c3
commit
b61fbf3132
@ -133,7 +133,7 @@ in
|
||||
@{PROC}/sys/kernel/random/uuid r,
|
||||
@{PROC}/sys/vm/overcommit_memory r,
|
||||
|
||||
${pkgs.openssl}/etc/** r,
|
||||
${pkgs.openssl.out}/etc/** r,
|
||||
${pkgs.transmission}/share/transmission/** r,
|
||||
|
||||
owner ${settingsDir}/** rw,
|
||||
|
@ -34,7 +34,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace "salt/utils/rsax931.py" \
|
||||
--subst-var-by "libcrypto" "${openssl}/lib/libcrypto.so"
|
||||
--subst-var-by "libcrypto" "${openssl.out}/lib/libcrypto.so"
|
||||
'';
|
||||
|
||||
# The tests fail due to socket path length limits at the very least;
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
./bootstrap
|
||||
|
||||
configureFlagsArray=(
|
||||
LIBS="-L${openssl}/lib -lssl -lcrypto"
|
||||
LIBS="-L${openssl.out}/lib -lssl -lcrypto"
|
||||
)
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user