Files
nixpkgs/pkgs/servers/http/nginx/modules/sysguard/package.nix
Martin Weinelt 332e43b0cc nginxModules: upgrade to derivations
This is how we gain proper versioning, standard patch application,
automatic updates. In total a more healthy nginx module package set.
2026-07-31 21:44:51 +02:00

25 lines
533 B
Nix

{
fetchFromGitHub,
lib,
mkNginxPlugin,
}:
mkNginxPlugin (finalAttrs: {
pname = "sysguard";
version = "0-unstable-2017-03-21";
src = fetchFromGitHub {
owner = "vozlt";
repo = "nginx-module-sysguard";
rev = "e512897f5aba4f79ccaeeebb51138f1704a58608";
sha256 = "19c6w6wscbq9phnx7vzbdf4ay6p2ys0g7kp2rmc9d4fb53phrhfx";
};
meta = {
description = "Nginx sysguard module";
homepage = "https://github.com/vozlt/nginx-module-sysguard";
license = lib.licenses.bsd2;
maintainers = [ ];
};
})