about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/skydns/default.nix
blob: 2ae2efbbb7596cc25e9d18415f7caeefa0dbb473 (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, fetchpatch }:

buildGoModule rec {
  pname = "skydns";
  version = "unstable-2019-10-15";

  src = fetchFromGitHub {
    owner = "skynetservices";
    repo = "skydns";
    rev = "94b2ea0d8bfa43395656ea94d4a6235bdda47129";
    hash = "sha256-OWLJmGx21UoWwrm6YNbPYdj3OgEZz7C+xccnkMOZ71g=";
  };

  vendorHash = "sha256-J3+DACU9JuazGCZZrfKxHukG5M+nb+WbV3eTG8EaT/w=";

  patches = [
    # Add Go Modules support
    (fetchpatch {
      url = "https://github.com/skynetservices/skydns/commit/37be34cd64a3037a6d5a3b3dbb673f391e9d7eb1.patch";
      hash = "sha256-JziYREg3vw8NMIPd8Zv8An7XUj+U6dvgRcaZph0DLPg=";
    })
  ];

  subPackages = [ "." ];

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "A distributed service for announcement and discovery of services";
    homepage = "https://github.com/skynetservices/skydns";
    license = lib.licenses.mit;
    maintainers = with maintainers; [ ];
  };
}