Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
864 B
Nix
46 lines
864 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
mod_ca,
|
|
apr,
|
|
aprutil,
|
|
apacheHttpd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_itk";
|
|
version = "2.4.7-04";
|
|
|
|
src = fetchurl {
|
|
url = "http://mpm-itk.sesse.net/mpm-itk-${version}.tar.gz";
|
|
sha256 = "sha256:1kzgd1332pgpxf489kr0vdwsaik0y8wp3q282d4wa5jlk7l877v0";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
mod_ca
|
|
apr
|
|
aprutil
|
|
apacheHttpd
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/modules
|
|
${apacheHttpd.dev}/bin/apxs -S LIBEXECDIR=$out/modules -i mpm_itk.la
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "MPM (Multi-Processing Module) for the Apache web server";
|
|
maintainers = [ maintainers.zupo ];
|
|
homepage = "http://mpm-itk.sesse.net/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|