summary refs log tree commit diff
path: root/pkgs/servers/mesos-dns/default.nix
blob: d67aa337476b61ace5be09e5fa64d9cd1abf43fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "mesos-dns-${version}";
  version = "0.1.2";
  rev = "v${version}";
  
  goPackagePath = "github.com/mesosphere/mesos-dns";

  # Avoid including the benchmarking test helper in the output:
  subPackages = [ "." ];

  src = fetchgit {
    inherit rev;
    url = "https://github.com/mesosphere/mesos-dns";
    sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02";
  };

  goDeps = ./deps.json;
}