summary refs log tree commit diff
path: root/pkgs/development/libraries/libewf/default.nix
blob: 7c948aa9824714673363ab0398e26bcac5617fd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ fetchurl, stdenv, zlib, openssl, libuuid, file }:

stdenv.mkDerivation rec {
  name = "libewf-20100226";
  src = fetchurl {
    url = "mirror://sourceforge/libewf/${name}.tar.gz";
    sha256 = "aedd2a6b3df6525ff535ab95cd569ebb361a4022eb4163390f26257913c2941a";
  };

  preConfigure = ''sed -e 's@/usr/bin/file@file@g' -i configure'';

  buildInputs = [ zlib openssl libuuid ];

  meta = {
    description = "Library for support of the Expert Witness Compression Format";
    homepage = http://sourceforge.net/projects/libewf/;
    license = "free";
  };
}