at v192 22 lines 710 B view raw
1{ fetchurl, stdenv, zlib, openssl, libuuid, file, fuse }: 2 3stdenv.mkDerivation rec { 4 version = "20140608"; 5 name = "libewf-${version}"; 6 src = fetchurl { 7 url = "https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz"; 8 sha256 = "0wfsffzxk934hl8cpwr14w8ixnh8d23x0xnnzcspjwi2c7730h6i"; 9 }; 10 11 preConfigure = ''sed -e 's@/usr/bin/file@file@g' -i configure''; 12 13 buildInputs = [ zlib openssl libuuid ]; 14 15 meta = { 16 description = "Library for support of the Expert Witness Compression Format"; 17 homepage = http://sourceforge.net/projects/libewf/; 18 license = stdenv.lib.licenses.lgpl3; 19 maintainers = [ stdenv.lib.maintainers.raskin ] ; 20 inherit version; 21 }; 22}