mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
This is how we gain proper versioning, standard patch application, automatic updates. In total a more healthy nginx module package set.
28 lines
549 B
Nix
28 lines
549 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkNginxPlugin,
|
|
expat,
|
|
}:
|
|
|
|
mkNginxPlugin (finalAttrs: {
|
|
pname = "dav";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arut";
|
|
repo = "nginx-dav-ext-module";
|
|
tag = "v${finalAttrs.version}";
|
|
sha256 = "000dm5zk0m1hm1iq60aff5r6y8xmqd7djrwhgnz9ig01xyhnjv9w";
|
|
};
|
|
|
|
buildInputs = [ expat ];
|
|
|
|
meta = {
|
|
description = "WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK support";
|
|
homepage = "https://github.com/arut/nginx-dav-ext-module";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
})
|