about summary refs log tree commit diff
path: root/pkgs/development/libraries/libewf
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-21 19:47:41 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-21 19:47:41 +0000
commit1b3ee8bf6c85f5d6a49ecf988ef85a6f84d716c7 (patch)
tree0b1c3496d83a50e657cf202ba77ed16d6b4ba409 /pkgs/development/libraries/libewf
parentff0483b3d80c9afbe946f446b5d20bf26289ca43 (diff)
Adding libewf.
svn path=/nixpkgs/trunk/; revision=15225
Diffstat (limited to 'pkgs/development/libraries/libewf')
-rw-r--r--pkgs/development/libraries/libewf/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libewf/default.nix b/pkgs/development/libraries/libewf/default.nix
new file mode 100644
index 0000000000000..cbf6847c37025
--- /dev/null
+++ b/pkgs/development/libraries/libewf/default.nix
@@ -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";
+  };
+}