easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libewf-legacy / package.nix
blob4cb9f3c324bfe2753a449ef5d93ac58aa5c21f30
2   lib,
3   fetchurl,
4   stdenv,
5   zlib,
6   openssl,
7   libuuid,
8   pkg-config,
9   bzip2,
12 stdenv.mkDerivation (finalAttrs: {
13   pname = "libewf-legacy";
14   version = "20140816";
16   src = fetchurl {
17     url = "https://github.com/libyal/libewf-legacy/releases/download/${finalAttrs.version}/libewf-${finalAttrs.version}.tar.gz";
18     hash = "sha256-ay0Hj7OGFnm6g5Qv6lHp5gKcN+wuoMN/V0QlbW9wJak=";
19   };
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [
23     zlib
24     openssl
25     libuuid
26   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ bzip2 ];
28   meta = {
29     description = "Legacy library for support of the Expert Witness Compression Format";
30     homepage = "https://sourceforge.net/projects/libewf/";
31     license = lib.licenses.lgpl3;
32     maintainers = with lib.maintainers; [ d3vil0p3r ];
33     platforms = lib.platforms.unix;
34   };