nixpkgs/pkgs/tools/filesystems/encfs/default.nix

31 lines
819 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, boost, fuse, openssl, perl
, pkgconfig, rlog }:
2015-03-12 10:18:58 +00:00
let version = "1.8"; in
stdenv.mkDerivation rec {
name = "encfs-${version}";
src = fetchFromGitHub {
2015-03-12 10:18:58 +00:00
sha256 = "1dp3558x9v5hqnjnrlnd0glrkcc23anl2mxhjirhhw8dyh1lzl5z";
rev = "v${version}";
repo = "encfs";
owner = "vgough";
};
buildInputs = [ autoreconfHook boost fuse openssl perl pkgconfig rlog ];
configureFlags = [
"--with-boost-serialization=boost_wserialization"
"--with-boost-filesystem=boost_filesystem"
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://vgough.github.io/encfs;
description = "Provides an encrypted filesystem in user-space via FUSE";
2015-03-03 05:46:13 +00:00
license = with licenses; lgpl2;
maintainers = with maintainers; [ nckx ];
};
}