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

stdenv.mkDerivation rec {
  version = "20140608";
  name = "libewf-${version}";
  src = fetchurl {
    url = "https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz";
    sha256 = "0wfsffzxk934hl8cpwr14w8ixnh8d23x0xnnzcspjwi2c7730h6i";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ zlib openssl libuuid ];
  patches = [ ./04-fix-FTBFS-GCC5.patch ];

  meta = {
    description = "Library for support of the Expert Witness Compression Format";
    homepage = http://sourceforge.net/projects/libewf/;
    license = stdenv.lib.licenses.lgpl3;
    maintainers = [ stdenv.lib.maintainers.raskin ] ;
    platforms = stdenv.lib.platforms.unix;
    inherit version;
  };
}