forked from mirrors/nixpkgs
21 lines
468 B
Nix
21 lines
468 B
Nix
|
# This file was generated by go2nix.
|
||
|
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
||
|
|
||
|
with goPackages;
|
||
|
|
||
|
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;
|
||
|
}
|