apacheHttpdPackages.mod_spkac: add passthru.updateScript

This commit is contained in:
Anthony Roussel 2024-03-21 22:40:37 +01:00
parent fc8e8f6780
commit 02a6023036
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 22 additions and 3 deletions

View File

@ -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_spkac";
@ -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 module for handling the Netscape keygen requests. ";
homepage = "https://redwax.eu";
changelog = "https://source.redwax.eu/projects/RS/repos/mod_spkac/browse/ChangeLog";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ dirkx ];