summary refs log tree commit diff
path: root/pkgs/tools/filesystems/encfs/default.nix
blob: ea96001a421b312f1aa81b6f343daf67d95555fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, openssl, fuse, boost, rlog }:

stdenv.mkDerivation {
  name = "encfs-1.7.4";

  src = fetchurl {
    url = "http://encfs.googlecode.com/files/encfs-1.7.4.tgz";
    sha256 = "1a3h47f4h0qdc0bf3vic1i8wrdw5nkx22mml4wsvmmrd9zqg0bi8";
  };

  buildInputs = [ boost fuse openssl rlog ];

  configureFlags = "--with-boost-serialization=boost_wserialization --with-boost-filesystem=boost_filesystem";

  meta = {
    homepage = http://www.arg0.net/encfs;
    description = "Provides an encrypted filesystem in user-space via FUSE";
  };
}