ecryptfs-helper: init at 20160722
This commit is contained in:
parent
f4d5d6e73e
commit
fd5cdca916
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, makeWrapper
|
||||||
|
, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = pname + "-" + version;
|
||||||
|
pname = "ecryptfs-helper";
|
||||||
|
version = "20160722";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://gist.githubusercontent.com/obadz/ec053fdb00dcb48441d8313169874e30/raw/4b657a4b7c3dc684e4d5e3ffaf46ced1b7675163/ecryptfs-helper.py";
|
||||||
|
sha256 = "0gp4m22zc80814ng80s38hp930aa8r4zqihr7jr23m0m2iq4pdpg";
|
||||||
|
};
|
||||||
|
|
||||||
|
phases = [ "installPhase" ];
|
||||||
|
|
||||||
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
# Do not hardcode PATH to ${ecryptfs} as we need the script to invoke executables from /var/setuid-wrappers
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin $out/libexec
|
||||||
|
cp $src $out/libexec/ecryptfs-helper.py
|
||||||
|
makeWrapper "${python.interpreter} $out/libexec/ecryptfs-helper.py" $out/bin/ecryptfs-helper
|
||||||
|
'';
|
||||||
|
}
|
|
@ -1411,6 +1411,8 @@ in
|
||||||
|
|
||||||
ecryptfs = callPackage ../tools/security/ecryptfs { };
|
ecryptfs = callPackage ../tools/security/ecryptfs { };
|
||||||
|
|
||||||
|
ecryptfs-helper = callPackage ../tools/security/ecryptfs/helper.nix { python = python2; };
|
||||||
|
|
||||||
editres = callPackage ../tools/graphics/editres { };
|
editres = callPackage ../tools/graphics/editres { };
|
||||||
|
|
||||||
edit = callPackage ../applications/editors/edit { };
|
edit = callPackage ../applications/editors/edit { };
|
||||||
|
|
Loading…
Reference in New Issue