Skip to content

Commit 05f11d5

Browse files
authored
Merge pull request #278342 from D3vil0p3r/patch-5
libewf-legacy: init at 20140814
2 parents d1ca333 + ff55b5d commit 05f11d5

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{ lib
2+
, fetchurl
3+
, fetchpatch
4+
, stdenv
5+
, zlib
6+
, openssl
7+
, libuuid
8+
, pkg-config
9+
, bzip2
10+
}:
11+
12+
stdenv.mkDerivation rec {
13+
pname = "libewf-ewf";
14+
version = "20140814";
15+
16+
src = fetchurl {
17+
url = "https://github.com/libyal/libewf-legacy/releases/download/${version}/libewf-${version}.tar.gz";
18+
hash = "sha256-OM3QXwnaIDeo66UNjzmu6to53SxgCMn/rE9VTPlX5BQ=";
19+
};
20+
21+
nativeBuildInputs = [ pkg-config ];
22+
buildInputs = [ zlib openssl libuuid ]
23+
++ lib.optionals stdenv.isDarwin [ bzip2 ];
24+
25+
meta = {
26+
description = "Legacy library for support of the Expert Witness Compression Format";
27+
homepage = "https://sourceforge.net/projects/libewf/";
28+
license = lib.licenses.lgpl3;
29+
maintainers = with lib.maintainers; [ d3vil0p3r ];
30+
platforms = lib.platforms.unix;
31+
};
32+
}

0 commit comments

Comments
 (0)