Merge pull request #278342 from D3vil0p3r/patch-5

libewf-legacy: init at 20140814

authored by 7c6f434c and committed by GitHub 05f11d5c d1ca333b

+32
+32
pkgs/development/libraries/libewf-legacy/default.nix
··· 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 + }