biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / webdav / default.nix
blob248c5e882ccee7a263f690f47ce9cb6db8cc0d56
1 { lib, stdenv, 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   };