mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
25 lines
684 B
Nix
25 lines
684 B
Nix
{ stdenv, fetchurl, pkgconfig, mod_ca, apr, aprutil }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_spkac";
|
|
version = "0.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
|
|
sha256 = "0hpr58yazbi21m0sjn22a8ns4h81s4jlab9szcdw7j9w9jdc7j0h";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ mod_ca apr aprutil ];
|
|
inherit (mod_ca) configureFlags installFlags;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "RedWax CA service module for handling the Netscape keygen requests. ";
|
|
|
|
homepage = "https://redwax.eu";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ dirkx ];
|
|
};
|
|
}
|