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

57 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, perl, utillinux, keyutils, nss, nspr, python, pam
, intltool, makeWrapper, coreutils, bash, gettext, cryptsetup, lvm2, rsync, which }:
2014-05-10 05:31:34 +00:00
2015-04-01 23:01:17 +00:00
stdenv.mkDerivation rec {
name = "ecryptfs-${version}";
version = "106";
src = fetchurl {
2015-04-01 23:01:17 +00:00
url = "http://launchpad.net/ecryptfs/trunk/${version}/+download/ecryptfs-utils_${version}.orig.tar.gz";
sha256 = "1d5nlzcbl8ch639zi3lq6d14gkk4964j6dqhfs87i67867fhlghp";
};
#TODO: replace wrapperDir below with from <nixos> config.security.wrapperDir;
2015-04-01 23:01:17 +00:00
postPatch = ''
FILES="$(grep -r '/bin/sh' src/utils -l; find src -name \*.c)"
for file in $FILES; do
substituteInPlace "$file" \
--replace /sbin/mount.ecryptfs_private /var/setuid-wrappers/mount.ecryptfs_private \
--replace /sbin/umount.ecryptfs_private /var/setuid-wrappers/umount.ecryptfs_private \
--replace /sbin/mount.ecryptfs $out/sbin/mount.ecryptfs \
--replace /sbin/umount.ecryptfs $out/sbin/umount.ecryptfs \
--replace /usr/bin/ecryptfs-rewrite-file $out/bin/ecryptfs-rewrite-file \
--replace /usr/bin/ecryptfs-mount-private $out/bin/ecryptfs-mount-private \
--replace /usr/bin/ecryptfs-setup-private $out/bin/ecryptfs-setup-private \
--replace /sbin/cryptsetup ${cryptsetup}/sbin/cryptsetup \
--replace /sbin/dmsetup ${lvm2}/sbin/dmsetup \
--replace /bin/mount ${utillinux}/bin/mount \
--replace /bin/umount ${utillinux}/bin/umount \
--replace /sbin/unix_chkpwd /var/setuid-wrappers/unix_chkpwd \
--replace /bin/bash ${bash}/bin/bash
done
'';
2014-05-10 05:31:34 +00:00
buildInputs = [ pkgconfig perl nss nspr python pam intltool makeWrapper ];
propagatedBuildInputs = [ coreutils gettext cryptsetup lvm2 rsync keyutils which ];
2014-05-10 05:31:34 +00:00
postInstall = ''
FILES="$(grep -r '/bin/sh' $out/bin -l)"
2014-05-10 05:31:34 +00:00
for file in $FILES; do
wrapProgram $file \
--prefix PATH ":" "${coreutils}/bin" \
--prefix PATH ":" "${gettext}/bin" \
--prefix PATH ":" "${rsync}/bin" \
--prefix PATH ":" "${keyutils}/bin" \
--prefix PATH ":" "${which}/bin" \
--prefix PATH ":" "$out/bin"
done
'';
2014-05-10 05:31:34 +00:00
meta = with stdenv.lib; {
description = "Enterprise-class stacked cryptographic filesystem";
2014-05-10 05:31:34 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.obadz ];
2014-05-10 05:31:34 +00:00
platforms = platforms.linux;
};
}