1{ fetchurl, stdenv, zlib, openssl, libuuid, file, fuse, autoreconfHook, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 version = "20171104";
5 name = "libewf-${version}";
6
7 src = fetchurl {
8 url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
9 sha256 = "0h7036gpj5cryvh17aq6i2cpnbpwg5yswmfydxbbwvd9yfxd6dng";
10 };
11
12 nativeBuildInputs = [ pkgconfig ];
13 buildInputs = [ zlib openssl libuuid ];
14
15 meta = {
16 description = "Library for support of the Expert Witness Compression Format";
17 homepage = https://sourceforge.net/projects/libewf/;
18 license = stdenv.lib.licenses.lgpl3;
19 maintainers = [ stdenv.lib.maintainers.raskin ] ;
20 platforms = stdenv.lib.platforms.unix;
21 inherit version;
22 };
23}