summary refs log tree commit diff
path: root/pkgs/development/libraries/libewf/default.nix
blob: cbf6847c37025791700cd0e98fbd8f1645d95745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
  };
}