2016-06-25 18:21:25 +01:00
|
|
|
{ fetchurl, stdenv, zlib, openssl, libuuid, file, fuse, autoreconfHook, pkgconfig }:
|
2009-04-21 20:47:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-02 11:15:10 +01:00
|
|
|
version = "20140608";
|
|
|
|
name = "libewf-${version}";
|
2009-04-21 20:47:41 +01:00
|
|
|
src = fetchurl {
|
2014-09-02 11:15:10 +01:00
|
|
|
url = "https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz";
|
|
|
|
sha256 = "0wfsffzxk934hl8cpwr14w8ixnh8d23x0xnnzcspjwi2c7730h6i";
|
2009-04-21 20:47:41 +01:00
|
|
|
};
|
|
|
|
|
2016-06-25 18:21:25 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2009-04-21 20:47:41 +01:00
|
|
|
buildInputs = [ zlib openssl libuuid ];
|
2016-06-25 18:21:25 +01:00
|
|
|
patches = [ ./04-fix-FTBFS-GCC5.patch ];
|
2009-04-21 20:47:41 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for support of the Expert Witness Compression Format";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://sourceforge.net/projects/libewf/;
|
2014-09-02 11:15:10 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ] ;
|
2016-06-25 18:21:25 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-09-02 11:15:10 +01:00
|
|
|
inherit version;
|
2009-04-21 20:47:41 +01:00
|
|
|
};
|
|
|
|
}
|