nixpkgs/pkgs/servers/http/apache-modules/mod_csr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
678 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, mod_ca, apr, aprutil }:
2020-02-15 17:01:49 +01:00
stdenv.mkDerivation rec {
pname = "mod_csr";
2020-02-15 17:01:49 +01:00
version = "0.2.3";
src = fetchurl {
url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
2020-02-15 17:01:49 +01:00
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 ];
};
}