summary refs log blame commit diff
path: root/pkgs/servers/mesos-dns/default.nix
blob: 8430f2d61e8e901ef9fa021ac9e8c6890da608ab (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                    

                    
                      







                                                               
                         
                

                         


                                                                    
                      
 
{ buildGoPackage, fetchFromGitHub }:

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

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

  src = fetchFromGitHub {
    inherit rev;
    owner = "mesosphere";
    repo = "mesos-dns";
    sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02";
  };

  goDeps = ./deps.nix;
}