summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/ecryptfs
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2016-07-23 00:21:31 +0100
committerobadz <obadz-git@obadz.com>2016-07-23 00:24:19 +0100
commit70a2278e1875b7734eef4ca3ef54357d37127b74 (patch)
treeb1e68018637b628fe2846eda56281c8aac5562e3 /pkgs/tools/security/ecryptfs
parentfd5cdca91691a9b6b274ccbd0fbc094611487fd4 (diff)
ecryptfs-helper: add meta
Diffstat (limited to 'pkgs/tools/security/ecryptfs')
-rw-r--r--pkgs/tools/security/ecryptfs/default.nix2
-rw-r--r--pkgs/tools/security/ecryptfs/helper.nix8
2 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/tools/security/ecryptfs/default.nix b/pkgs/tools/security/ecryptfs/default.nix
index 0c3a74d12495..582b5ceae119 100644
--- a/pkgs/tools/security/ecryptfs/default.nix
+++ b/pkgs/tools/security/ecryptfs/default.nix
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Enterprise-class stacked cryptographic filesystem";
license = licenses.gpl2Plus;
- maintainers = [ maintainers.obadz ];
+ maintainers = with maintainers; [ obadz ];
platforms = platforms.linux;
};
}
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 = [];
+ };
}