treewide: Fix output references to openssl

This commit is contained in:
Tuomas Tynkkynen 2016-08-23 04:36:49 +03:00
parent 07491d68c3
commit b61fbf3132
3 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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;

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
./bootstrap
configureFlagsArray=(
LIBS="-L${openssl}/lib -lssl -lcrypto"
LIBS="-L${openssl.out}/lib -lssl -lcrypto"
)
'';