9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
24 lines
736 B
Nix
24 lines
736 B
Nix
{ fetchurl, stdenv, zlib, openssl, libuuid, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20201129";
|
|
pname = "libewf";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
|
|
sha256 = "168k1az9hm0lajh57zlbknsq5m8civ1rzp81zz4sd7v64xilzxdk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
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;
|
|
};
|
|
}
|