2011-08-02 21:40:07 +02:00
|
|
|
{ fetchurl, stdenv, zlib, openssl, libuuid, file }:
|
2009-04-21 21:47:41 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-08-02 21:40:07 +02:00
|
|
|
name = "libewf-20100226";
|
2009-04-21 21:47:41 +02:00
|
|
|
src = fetchurl {
|
2011-08-02 21:40:07 +02:00
|
|
|
url = "mirror://sourceforge/libewf/${name}.tar.gz";
|
|
|
|
sha256 = "aedd2a6b3df6525ff535ab95cd569ebb361a4022eb4163390f26257913c2941a";
|
2009-04-21 21:47:41 +02:00
|
|
|
};
|
|
|
|
|
2011-08-02 21:40:07 +02:00
|
|
|
preConfigure = ''sed -e 's@/usr/bin/file@file@g' -i configure'';
|
|
|
|
|
2009-04-21 21:47:41 +02:00
|
|
|
buildInputs = [ zlib openssl libuuid ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for support of the Expert Witness Compression Format";
|
|
|
|
homepage = http://sourceforge.net/projects/libewf/;
|
|
|
|
license = "free";
|
|
|
|
};
|
|
|
|
}
|