Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / webdav / default.nix
blobbcc80dd5ba53d74a3db03157488ac1c5c9f90ca1
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "webdav";
5   version = "4.2.0";
7   src = fetchFromGitHub {
8     owner = "hacdias";
9     repo = "webdav";
10     rev = "v${version}";
11     sha256 = "sha256-4rgDO1vItmmCRXRiO24MPa9IPzrsfzCWLH6hl6oKkxk=";
12   };
14   vendorHash = "sha256-az+EasmKitFPWD5JfKaSKZGok/n/dPmIv90RiL750KY=";
16   meta = with lib; {
17     description = "Simple WebDAV server";
18     homepage = "https://github.com/hacdias/webdav";
19     license = licenses.mit;
20     maintainers = with maintainers; [ pmy ];
21     mainProgram = "webdav";
22   };