mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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.
25 lines
678 B
Nix
25 lines
678 B
Nix
{ lib, stdenv, fetchurl, pkg-config, mod_ca, apr, aprutil }:
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_csr";
|
|
version = "0.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
|
|
sha256 = "1p4jc0q40453wpvwqgnr1n007b4jxpkizzy3r4jygsxxgg4x9w7x";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ mod_ca apr aprutil ];
|
|
inherit (mod_ca) configureFlags installFlags;
|
|
|
|
meta = with lib; {
|
|
description = "RedWax CA service module to handle Certificate Signing Requests";
|
|
|
|
homepage = "https://redwax.eu";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ dirkx ];
|
|
};
|
|
}
|