1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/http/apache-modules/mod_crl/default.nix

26 lines
661 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, mod_ca, apr, aprutil }:
2020-02-15 16:01:49 +00:00
stdenv.mkDerivation rec {
pname = "mod_crl";
2020-02-15 16:01:49 +00:00
version = "0.2.3";
src = fetchurl {
url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
2020-02-15 16:01:49 +00:00
sha256 = "1x186kp6fr8nwg0jlv5phagxndvw4rjqfga9mkibmn6dx252p61d";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ mod_ca apr aprutil ];
inherit (mod_ca) configureFlags installFlags;
meta = with lib; {
description = "RedWax module for Certificate Revocation Lists";
homepage = "https://redwax.eu";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ dirkx ];
};
}