My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/servers/skydns/default.nix

22 lines
422 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "skydns";
version = "2.5.3a";
rev = version;
goPackagePath = "github.com/skynetservices/skydns";
src = fetchFromGitHub {
inherit rev;
owner = "skynetservices";
repo = "skydns";
sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7";
};
goDeps = ./deps.nix;
meta = {
license = lib.licenses.mit;
};
}