summary refs log tree commit diff
path: root/nixos/modules/system/boot/luksroot.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:44:32 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:02:23 +0200
commit2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33 (patch)
tree7df642b3d8c4882ea468cb53579882f9918fb114 /nixos/modules/system/boot/luksroot.nix
parent5eb01cd0adc3d5dfe1e81abac288d9764ef7e4d9 (diff)
downloadnixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.gz
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.bz2
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.lz
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.xz
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.zst
nixpkgs-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.zip
treewide: Make explicit that 'dev' output of openssl is used
Diffstat (limited to 'nixos/modules/system/boot/luksroot.nix')
-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 77a82547031..ad53f25d61b 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}/bin/openssl
 
-        cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
+        cc -O3 -I${pkgs.openssl.dev}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
         strip -s pbkdf2-sha512
         copy_bin_and_libs pbkdf2-sha512