2022-06-15 16:27:08 +00:00
|
|
|
{ fetchurl, fetchpatch, lib, stdenv, zlib, openssl, libuuid, pkg-config, bzip2 }:
|
2009-04-21 19:47:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-07 16:05:56 +00:00
|
|
|
version = "20201230";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libewf";
|
2018-01-28 21:19:23 +00:00
|
|
|
|
2009-04-21 19:47:41 +00: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";
|
2022-06-15 16:27:08 +00:00
|
|
|
hash = "sha256-10r4jPzsA30nHQzjdg/VkwTG1PwOskwv8Bra34ZPMgc=";
|
2009-04-21 19:47:41 +00:00
|
|
|
};
|
|
|
|
|
2022-06-15 16:27:08 +00:00
|
|
|
patches = [
|
|
|
|
# fix build with OpenSSL 3.0
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/libyal/libewf/commit/033ea5b4e5f8f1248f74a2ec61fc1be183c6c46b.patch";
|
|
|
|
hash = "sha256-R4+NO/91kiZP48SJyVF9oYjKCg1h/9Kh8/0VOEmJXPQ=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-11-11 19:25:49 +00:00
|
|
|
buildInputs = [ zlib openssl libuuid ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ bzip2 ];
|
2009-04-21 19:47:41 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for support of the Expert Witness Compression Format";
|
2020-04-01 01:11:51 +00: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;
|
2009-04-21 19:47:41 +00:00
|
|
|
};
|
|
|
|
}
|