mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
742 B
Nix
24 lines
742 B
Nix
{ fetchurl, stdenv, zlib, openssl, libuuid, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20171104";
|
|
name = "libewf-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
|
|
sha256 = "0h7036gpj5cryvh17aq6i2cpnbpwg5yswmfydxbbwvd9yfxd6dng";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ zlib openssl libuuid ];
|
|
|
|
meta = {
|
|
description = "Library for support of the Expert Witness Compression Format";
|
|
homepage = https://sourceforge.net/projects/libewf/;
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
maintainers = [ stdenv.lib.maintainers.raskin ] ;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
inherit version;
|
|
};
|
|
}
|