about summary refs log tree commit diff
path: root/pkgs/servers/http/dave/default.nix
blob: 8950b0b3d20d7f98768718843c697eb2ff8ce74c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, buildGoModule, fetchFromGitHub, mage }:

buildGoModule rec {
  pname = "dave";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = "micromata";
    repo = "dave";
    rev = "v${version}";
    hash = "sha256-wvsW4EwMWAgEV+LPeMhHL4AsuyS5TDMmpD9D4F1nVM4=";
  };

  deleteVendor = true;
  vendorHash = "sha256-iyq2DGdbdfJIRNkGAIKTk1LLDydpVX3juQFaG6H5vJQ=";

  patches = [
    # Add Go Modules support:
    # - Based on https://github.com/micromata/dave/commit/46ae146dd2e95d57be35fa01885ea2c55fd8c279.
    # - Bump golang.org/x/sys for Darwin.
    ./go-modules.patch
  ];

  subPackages = [ "cmd/dave" "cmd/davecli" ];

  ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs" ];

  meta = with lib; {
    homepage = "https://github.com/micromata/dave";
    description = "Totally simple and very easy to configure stand alone webdav server";
    license = licenses.asl20;
    maintainers = with maintainers; [ lunik1 ];
  };
}