about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-01-24 09:30:05 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-01-24 10:03:38 +0200
commitd91c7347d1f51ec0282a286e4eae69c13edd506a (patch)
treea3dc69a5855b863ba3576e8ec332f1b00cd5e1b4 /nixos
parent2258aecaa5e1b03b2f6def3bd79b769ee306ab9c (diff)
downloadnixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar.gz
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar.bz2
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar.lz
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar.xz
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.tar.zst
nixlib-d91c7347d1f51ec0282a286e4eae69c13edd506a.zip
treewide: Mass replace 'openssl}/lib' to refer the 'out' output
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/luksroot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 59bff5472e84..6ea11e60b263 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -438,7 +438,7 @@ in
         copy_bin_and_libs ${pkgs.ykpers}/bin/ykinfo
         copy_bin_and_libs ${pkgs.openssl}/bin/openssl
 
-        cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
+        cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
         strip -s pbkdf2-sha512
         copy_bin_and_libs pbkdf2-sha512