mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Adding libewf.
svn path=/nixpkgs/trunk/; revision=15225
This commit is contained in:
parent
ff0483b3d8
commit
1b3ee8bf6c
17
pkgs/development/libraries/libewf/default.nix
Normal file
17
pkgs/development/libraries/libewf/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user