Unverified Commit 2a0f9cff authored by D3vil0p3r's avatar D3vil0p3r Committed by GitHub
Browse files

libewf-legacy: init at 20140814

parent 3cb442f4
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, fetchurl
, fetchpatch
, stdenv
, zlib
, openssl
, libuuid
, pkg-config
, bzip2
}:

stdenv.mkDerivation rec {
  version = "20140814";
  pname = "libewf-ewf";

  src = fetchurl {
    url = "https://github.com/libyal/libewf-legacy/releases/download/${version}/libewf-${version}.tar.gz";
    hash = "sha256-OM3QXwnaIDeo66UNjzmu6to53SxgCMn/rE9VTPlX5BQ=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ zlib openssl libuuid ]
    ++ lib.optionals stdenv.isDarwin [ bzip2 ];

  meta = {
    description = "Legacy library for support of the Expert Witness Compression Format";
    homepage = "https://sourceforge.net/projects/libewf/";
    license = lib.licenses.lgpl3;
    maintainers = with lib.maintainers; [ d3vil0p3r ];
    platforms = lib.platforms.unix;
  };
}