ecryptfs-helper: add meta

This commit is contained in:
obadz 2016-07-23 00:21:31 +01:00
parent fd5cdca916
commit 70a2278e18
2 changed files with 9 additions and 1 deletions

View File

@ -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;
};
}

View File

@ -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 = [];
};
}