nixpkgs/pkgs/servers/http/angie/default.nix

50 lines
1.2 KiB
Nix
Raw Normal View History

2023-11-20 20:04:20 +00:00
{ callPackage
, lib
, fetchurl
, nixosTests
2024-03-27 17:08:59 +00:00
, withAcme ? false
2023-11-20 20:04:20 +00:00
, withQuic ? false
, ...
}@args:
callPackage ../nginx/generic.nix args rec {
2024-09-20 09:45:28 +00:00
version = "1.7.0";
2023-11-20 20:04:20 +00:00
pname = if withQuic then "angieQuic" else "angie";
src = fetchurl {
url = "https://download.angie.software/files/angie-${version}.tar.gz";
2024-09-20 09:45:28 +00:00
hash = "sha256-B5fm4BgV/bMLvJ9wOAA4fJyLLGARManDlQmjPXPyHAE=";
2023-11-20 20:04:20 +00:00
};
2024-03-27 17:08:59 +00:00
configureFlags = lib.optionals withAcme [
"--with-http_acme_module"
"--http-acme-client-path=/var/lib/nginx/acme"
] ++ lib.optionals withQuic [
2023-11-20 20:04:20 +00:00
"--with-http_v3_module"
];
preInstall = ''
if [[ -e man/angie.8 ]]; then
installManPage man/angie.8
fi
'';
postInstall = ''
ln -s $out/bin/nginx $out/bin/angie
'';
passthru.tests = {
angie = nixosTests.nginx-variants.angie;
angie-api = nixosTests.angie-api;
angie-http3 = nixosTests.nginx-http3.angieQuic;
2023-11-20 20:04:20 +00:00
};
meta = {
description = "Angie is an efficient, powerful, and scalable web server that was forked from nginx";
homepage = "https://angie.software/en/";
license = lib.licenses.bsd2;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ izorkin ];
};
}