75d1e986a7
Fixes #15289.
24 lines
807 B
Nix
24 lines
807 B
Nix
{ fetchurl, stdenv, zlib, openssl, libuuid, file, fuse, autoreconfHook, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20140608";
|
|
name = "libewf-${version}";
|
|
src = fetchurl {
|
|
url = "https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz";
|
|
sha256 = "0wfsffzxk934hl8cpwr14w8ixnh8d23x0xnnzcspjwi2c7730h6i";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ zlib openssl libuuid ];
|
|
patches = [ ./04-fix-FTBFS-GCC5.patch ];
|
|
|
|
meta = {
|
|
description = "Library for support of the Expert Witness Compression Format";
|
|
homepage = http://sourceforge.net/projects/libewf/;
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
maintainers = [ stdenv.lib.maintainers.raskin ] ;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
inherit version;
|
|
};
|
|
}
|