1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/tools/filesystems/encfs/default.nix
Tobias Geerinckx-Rice 7886bd9545 encfs: fix typo
2015-03-03 06:46:30 +01:00

31 lines
823 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, boost, fuse, openssl, perl
, pkgconfig, rlog }:
let version = "1.8-rc1"; in
stdenv.mkDerivation rec {
name = "encfs-${version}";
src = fetchFromGitHub {
sha256 = "17a09pg7752nlbgm2nmrwhm90kv2z3dj20xs79qvvr6x7rdgzck8";
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";
license = with licenses; lgpl2;
maintainers = with maintainers; [ nckx ];
};
}