mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
apacheHttpdPackages.mod_pkcs12: add passthru.updateScript
This commit is contained in:
parent
08ed5d80d1
commit
a86463f93f
@ -1,4 +1,13 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, mod_ca, apr, aprutil }:
|
||||
{
|
||||
apr,
|
||||
aprutil,
|
||||
directoryListingUpdater,
|
||||
fetchurl,
|
||||
lib,
|
||||
mod_ca,
|
||||
pkg-config,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mod_pkcs12";
|
||||
@ -10,13 +19,23 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ mod_ca apr aprutil ];
|
||||
|
||||
buildInputs = [
|
||||
apr
|
||||
aprutil
|
||||
mod_ca
|
||||
];
|
||||
|
||||
inherit (mod_ca) configureFlags installFlags;
|
||||
|
||||
passthru.updateScript = directoryListingUpdater {
|
||||
url = "https://redwax.eu/dist/rs/";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "RedWax CA service modules for PKCS#12 format files";
|
||||
|
||||
homepage = "https://redwax.eu";
|
||||
changelog = "https://source.redwax.eu/projects/RS/repos/mod_pkcs12/browse/ChangeLog";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ dirkx ];
|
||||
|
Loading…
Reference in New Issue
Block a user