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

buildGoPackage rec {
  name = "skydns-${version}";
  version = "2.5.3a";
  rev = "${version}";
  
  goPackagePath = "github.com/skynetservices/skydns";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/skynetservices/skydns";
    sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7";
  };

  goDeps = ./deps.json;
}