mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
encfs 1.7.4 -> 1.8-rc1 (fix timing vulnerability) + clean up
Many other flaws remain: <https://defuse.ca/audits/encfs.htm>
This commit is contained in:
parent
893fe6ffb8
commit
1db0e77efe
@ -1,19 +1,30 @@
|
|||||||
{ stdenv, fetchurl, openssl, fuse, boost, rlog }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, boost, fuse, openssl, perl
|
||||||
|
, pkgconfig, rlog }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
let version = "1.8-rc1"; in
|
||||||
name = "encfs-1.7.4";
|
stdenv.mkDerivation rec {
|
||||||
|
name = "encfs-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://encfs.googlecode.com/files/encfs-1.7.4.tgz";
|
sha256 = "17a09pg7752nlbgm2nmrwhm90kv2z3dj20xs79qvvr6x7rdgzck8";
|
||||||
sha256 = "1a3h47f4h0qdc0bf3vic1i8wrdw5nkx22mml4wsvmmrd9zqg0bi8";
|
rev = "v${version}";
|
||||||
|
repo = "encfs";
|
||||||
|
owner = "vgough";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost fuse openssl rlog ];
|
buildInputs = [ autoreconfHook boost fuse openssl perl pkgconfig rlog ];
|
||||||
|
|
||||||
configureFlags = "--with-boost-serialization=boost_wserialization --with-boost-filesystem=boost_filesystem";
|
configureFlags = [
|
||||||
|
"--with-boost-serialization=boost_wserialization"
|
||||||
|
"--with-boost-filesystem=boost_filesystem"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
enableParallelBuilding = true;
|
||||||
homepage = http://www.arg0.net/encfs;
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://vgough.github.io/encfs;
|
||||||
description = "Provides an encrypted filesystem in user-space via FUSE";
|
description = "Provides an encrypted filesystem in user-space via FUSE";
|
||||||
|
license = with licenses; lgpl;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user