summary refs log tree commit diff
path: root/pkgs/tools/security/ecryptfs/helper.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/ecryptfs/helper.nix')
-rw-r--r--pkgs/tools/security/ecryptfs/helper.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/tools/security/ecryptfs/helper.nix b/pkgs/tools/security/ecryptfs/helper.nix
index 5ac68517163b..40e6771251ab 100644
--- a/pkgs/tools/security/ecryptfs/helper.nix
+++ b/pkgs/tools/security/ecryptfs/helper.nix
@@ -24,4 +24,12 @@ stdenv.mkDerivation rec {
     cp $src $out/libexec/ecryptfs-helper.py
     makeWrapper "${python.interpreter} $out/libexec/ecryptfs-helper.py" $out/bin/ecryptfs-helper
   '';
+
+  meta = with stdenv.lib; {
+    description    = "Helper script to create/mount/unemount encrypted directories using eCryptfs without needing root permissions";
+    license        = licenses.gpl2Plus;
+    maintainers    = with maintainers; [ obadz ];
+    platforms      = platforms.linux;
+    hydraPlatforms = [];
+  };
 }