forked from mirrors/nixpkgs
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.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, fetchurl, libxml2, pkg-config, perl
|
|
, compressionSupport ? true, zlib ? null
|
|
, sslSupport ? true, openssl ? null
|
|
, static ? false
|
|
, shared ? true
|
|
}:
|
|
|
|
assert compressionSupport -> zlib != null;
|
|
assert sslSupport -> openssl != null;
|
|
assert static || shared;
|
|
|
|
let
|
|
inherit (stdenv.lib) optionals;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.29.6";
|
|
pname = "neon";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.webdav.org/neon/${pname}-${version}.tar.gz";
|
|
sha256 = "0hzbjqdx1z8zw0vmbknf159wjsxbcq8ii0wgwkqhxj3dimr0nr4w";
|
|
};
|
|
|
|
patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [libxml2 openssl]
|
|
++ stdenv.lib.optional compressionSupport zlib;
|
|
|
|
configureFlags = [
|
|
(stdenv.lib.enableFeature shared "shared")
|
|
(stdenv.lib.enableFeature static "static")
|
|
(stdenv.lib.withFeature compressionSupport "zlib")
|
|
(stdenv.lib.withFeature sslSupport "ssl")
|
|
];
|
|
|
|
passthru = {inherit compressionSupport sslSupport;};
|
|
|
|
checkInputs = [ perl ];
|
|
doCheck = false; # fails, needs the net
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An HTTP and WebDAV client library";
|
|
homepage = "http://www.webdav.org/neon/";
|
|
platforms = platforms.unix;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|