nixpkgs/pkgs/tools/security/ecryptfs/helper.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2016-07-23 01:11:05 +02:00
, fetchurl
, makeWrapper
2016-10-18 09:12:36 +02:00
, python2
2016-07-23 01:11:05 +02:00
}:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2016-07-23 01:11:05 +02:00
pname = "ecryptfs-helper";
version = "20160722";
src = fetchurl {
url = "https://gist.githubusercontent.com/obadz/ec053fdb00dcb48441d8313169874e30/raw/4b657a4b7c3dc684e4d5e3ffaf46ced1b7675163/ecryptfs-helper.py";
sha256 = "0gp4m22zc80814ng80s38hp930aa8r4zqihr7jr23m0m2iq4pdpg";
};
phases = [ "installPhase" ];
nativeBuildInputs = [ makeWrapper ];
2016-07-23 01:11:05 +02:00
# Do not hardcode PATH to ${ecryptfs} as we need the script to invoke executables from /run/wrappers/bin
2016-07-23 01:11:05 +02:00
installPhase = ''
mkdir -p $out/bin $out/libexec
cp $src $out/libexec/ecryptfs-helper.py
makeWrapper "${python2.interpreter}" "$out/bin/ecryptfs-helper" --add-flags "$out/libexec/ecryptfs-helper.py"
2016-07-23 01:11:05 +02:00
'';
2016-07-23 01:21:31 +02:00
meta = with lib; {
2016-07-23 01:21:31 +02:00
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 = [];
};
2016-07-23 01:11:05 +02:00
}