nixpkgs/pkgs/tools/networking/flannel/default.nix

16 lines
377 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2016-06-03 11:17:53 +00:00
buildGoPackage rec {
name = "flannel-${version}";
version = "0.5.5";
rev = "v${version}";
goPackagePath = "github.com/coreos/flannel";
src = fetchgit {
inherit rev;
url = "https://github.com/coreos/flannel";
sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw";
};
}