summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/ecryptfs
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/ecryptfs
parentdbb06ea3d217d55fb304e3e69b60bae0fc1ce00a (diff)
ecryptfs-helper: fix makeWrapper use after 7ff6eec5
Diffstat (limited to 'pkgs/tools/security/ecryptfs')
-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; {