biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / apache-modules / mod_scep / default.nix
blob40561e41ba88ee0a09f314485f90e09a262ee102
2   apr,
3   aprutil,
4   directoryListingUpdater,
5   fetchurl,
6   lib,
7   mod_ca,
8   pkg-config,
9   stdenv,
12 stdenv.mkDerivation rec {
13   pname = "mod_scep";
14   version = "0.2.4";
16   src = fetchurl {
17     url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
18     hash = "sha256-HFPQ1A3ULtT2MduIQZS1drdQvCdZqJqKpOsJLEw67sI=";
19   };
21   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [
24     apr
25     aprutil
26     mod_ca
27   ];
29   inherit (mod_ca) configureFlags installFlags;
31   passthru.updateScript = directoryListingUpdater {
32     url = "https://redwax.eu/dist/rs/";
33   };
35   meta = with lib; {
36     description = "RedWax CA service modules for SCEP (Automatic ceritifcate issue/renewal)";
37     homepage = "https://redwax.eu";
38     changelog = "https://source.redwax.eu/projects/RS/repos/mod_scep/browse/ChangeLog";
39     license = licenses.asl20;
40     platforms = platforms.unix;
41     maintainers = with maintainers; [ dirkx ];
42   };