mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
914e0e594c
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541 * update docs to describe `deps.nix` * include goDeps in nix-shell GOPATH * NixOS 16.09 rel notes about replacing goPackages
19 lines
398 B
Nix
19 lines
398 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "skydns-${version}";
|
|
version = "2.5.3a";
|
|
rev = "${version}";
|
|
|
|
goPackagePath = "github.com/skynetservices/skydns";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "skynetservices";
|
|
repo = "skydns";
|
|
sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
}
|