2021-01-21 17:00:13 +00:00
|
|
|
{ fetchurl, lib, stdenv, zlib, openssl, libuuid, pkg-config }:
|
2009-04-21 20:47:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-07 16:05:56 +00:00
|
|
|
version = "20201230";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libewf";
|
2018-01-28 21:19:23 +00:00
|
|
|
|
2009-04-21 20:47:41 +01:00
|
|
|
src = fetchurl {
|
2018-01-28 21:19:23 +00:00
|
|
|
url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
|
2021-02-07 16:05:56 +00:00
|
|
|
sha256 = "sha256-10r4jPzsA30nHQzjdg/VkwTG1PwOskwv8Bra34ZPMgc=";
|
2009-04-21 20:47:41 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2009-04-21 20:47:41 +01:00
|
|
|
buildInputs = [ zlib openssl libuuid ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for support of the Expert Witness Compression Format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/libewf/";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
maintainers = [ lib.maintainers.raskin ] ;
|
|
|
|
platforms = lib.platforms.unix;
|
2014-09-02 11:15:10 +01:00
|
|
|
inherit version;
|
2009-04-21 20:47:41 +01:00
|
|
|
};
|
|
|
|
}
|