fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ fetchurl, lib, stdenv, zlib, openssl, libuuid, pkg-config, bzip2 }:
2
3stdenv.mkDerivation rec {
4 version = "20201230";
5 pname = "libewf";
6
7 src = fetchurl {
8 url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
9 sha256 = "sha256-10r4jPzsA30nHQzjdg/VkwTG1PwOskwv8Bra34ZPMgc=";
10 };
11
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ zlib openssl libuuid ]
14 ++ lib.optionals stdenv.isDarwin [ bzip2 ];
15
16 meta = {
17 description = "Library for support of the Expert Witness Compression Format";
18 homepage = "https://sourceforge.net/projects/libewf/";
19 license = lib.licenses.lgpl3;
20 maintainers = [ lib.maintainers.raskin ] ;
21 platforms = lib.platforms.unix;
22 };
23}