Adding libewf.

svn path=/nixpkgs/trunk/; revision=15225
This commit is contained in:
Lluís Batlle i Rossell 2009-04-21 19:47:41 +00:00
parent ff0483b3d8
commit 1b3ee8bf6c
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ fetchurl, stdenv, zlib, openssl, libuuid }:
stdenv.mkDerivation rec {
name = "libewf-20080501";
src = fetchurl {
url = mirror://sourceforge/libewf/libewf-20080501.tar.gz;
sha256 = "0s8fp7kmpk0976zii0fbk8vhi8k1br2fjp510rmgr6q1ssqdbi36";
};
buildInputs = [ zlib openssl libuuid ];
meta = {
description = "Library for support of the Expert Witness Compression Format";
homepage = http://sourceforge.net/projects/libewf/;
license = "free";
};
}

View File

@ -3388,6 +3388,10 @@ let
inherit fetchurl stdenv;
};
libewf = import ../development/libraries/libewf {
inherit fetchurl stdenv zlib openssl libuuid;
};
libexif = import ../development/libraries/libexif {
inherit fetchurl stdenv gettext;
};