summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2017-04-21 09:01:17 +0100
committerobadz <obadz-git@obadz.com>2017-04-21 21:25:30 +0100
commitc4fecfb1ec2d2ed14ff8ad35001c12c07f24b819 (patch)
tree20b13c82fc072618cf27b5380c8c10960ab7d28b /pkgs/tools/security
parentdbb06ea3d217d55fb304e3e69b60bae0fc1ce00a (diff)
downloadnixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar.gz
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar.bz2
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar.lz
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar.xz
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.tar.zst
nixlib-c4fecfb1ec2d2ed14ff8ad35001c12c07f24b819.zip
ecryptfs-helper: fix makeWrapper use after 7ff6eec5
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/ecryptfs/helper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/ecryptfs/helper.nix b/pkgs/tools/security/ecryptfs/helper.nix
index 05327ad3a090..40a728f6cb1a 100644
--- a/pkgs/tools/security/ecryptfs/helper.nix
+++ b/pkgs/tools/security/ecryptfs/helper.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir -p $out/bin $out/libexec
     cp $src $out/libexec/ecryptfs-helper.py
-    makeWrapper "${python2.interpreter} $out/libexec/ecryptfs-helper.py" $out/bin/ecryptfs-helper
+    makeWrapper "${python2.interpreter}" "$out/bin/ecryptfs-helper" --add-flags "$out/libexec/ecryptfs-helper.py"
   '';
 
   meta = with stdenv.lib; {