nixpkgs/pkgs/servers/mesos-dns/default.nix

22 lines
464 B
Nix
Raw Normal View History

{ buildGoPackage, fetchFromGitHub }:
2016-06-03 17:40:02 +00:00
buildGoPackage rec {
pname = "mesos-dns";
2016-06-03 17:40:02 +00:00
version = "0.1.2";
rev = "v${version}";
2016-06-03 17:40:02 +00:00
goPackagePath = "github.com/mesosphere/mesos-dns";
# Avoid including the benchmarking test helper in the output:
subPackages = [ "." ];
src = fetchFromGitHub {
2016-06-03 17:40:02 +00:00
inherit rev;
owner = "mesosphere";
repo = "mesos-dns";
2016-06-03 17:40:02 +00:00
sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02";
};
goDeps = ./deps.nix;
2016-06-03 17:40:02 +00:00
}