mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 05:04:40 +00:00
25 lines
521 B
Nix
25 lines
521 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
mkNginxPlugin,
|
|
}:
|
|
|
|
mkNginxPlugin (finalAttrs: {
|
|
pname = "fancyindex";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aperezdc";
|
|
repo = "ngx-fancyindex";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-97HCAm3hcgrwyOvBEwC+vcVkuuzedgHC67+w8OK2bEQ=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Fancy indexes module";
|
|
homepage = "https://github.com/aperezdc/ngx-fancyindex";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ aneeshusa ];
|
|
};
|
|
})
|