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.
26 lines
731 B
Nix
26 lines
731 B
Nix
{ lib, stdenv, fetchurl, docutils, libev, openssl, pkg-config, nixosTests }:
|
|
stdenv.mkDerivation rec {
|
|
version = "1.7.0";
|
|
pname = "hitch";
|
|
|
|
src = fetchurl {
|
|
url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz";
|
|
sha256 = "1i75giwyr66ip8xsvk3gg5xdbxnmcabgxz8dqi06c58mw7qzhzn9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ docutils libev openssl ];
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
passthru.tests.hitch = nixosTests.hitch;
|
|
|
|
meta = with lib; {
|
|
description = "Libev-based high performance SSL/TLS proxy by Varnish Software";
|
|
homepage = "https://hitch-tls.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.jflanglois ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|