File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
pkgs/development/libraries/libewf-legacy Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments