mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
This is how we gain proper versioning, standard patch application, automatic updates. In total a more healthy nginx module package set.
25 lines
494 B
Nix
25 lines
494 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
mkNginxPlugin,
|
|
}:
|
|
|
|
mkNginxPlugin (finalAttrs: {
|
|
pname = "coolkit";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FRiCKLE";
|
|
repo = "ngx_coolkit";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-EF/psh+aXUc1FRPrGUqczYFjsHYhX8wkV7hpVzEDssU=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Collection of small and useful nginx add-ons";
|
|
homepage = "https://github.com/FRiCKLE/ngx_coolkit";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
})
|