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

33 lines
876 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, boost, fuse, openssl, perl
, pkgconfig, rlog }:
stdenv.mkDerivation rec {
name = "encfs-${version}";
version = "1.8.1";
src = fetchFromGitHub {
2015-03-25 19:16:39 -04:00
sha256 = "1cxihqwpnqbzy8qz0134199pwfnd7ikr2835p5p1yzqnl203wcdb";
rev = "v${version}";
repo = "encfs";
owner = "vgough";
};
buildInputs = [ boost fuse openssl rlog ];
nativeBuildInputs = [ autoreconfHook perl pkgconfig ];
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";
license = licenses.lgpl2;
maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux;
};
}