webdav: 5.3.0 -> 5.4.2 (#348380)

This commit is contained in:
Nick Cao 2024-10-23 09:54:14 -04:00 committed by GitHub
commit 1066cba801
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,22 +2,27 @@
buildGo123Module rec {
pname = "webdav";
version = "5.3.0";
version = "5.4.2";
src = fetchFromGitHub {
owner = "hacdias";
repo = "webdav";
rev = "v${version}";
sha256 = "sha256-F7ehl7Q/66ah6/N06U8Ld3bUjuF5tpJlNS/aWEorQaI=";
sha256 = "sha256-a1XAlmEW8gNTgVZiJ200CP/wvbwvyv4Lc3L6KP/4Mik=";
};
vendorHash = "sha256-FvTDqGr3B05osuJvLj7J04JMeamZc/X6YeLY24ej7Ak=";
vendorHash = "sha256-d8WauJ1i429dr79iHgrbFRZCmx+W6OobSINy8aNGG6w=";
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Simple WebDAV server";
homepage = "https://github.com/hacdias/webdav";
license = licenses.mit;
maintainers = with maintainers; [ pmy ];
maintainers = with maintainers; [
pmy
pbsds
];
mainProgram = "webdav";
};
}