nixpkgs/pkgs/tools/networking/flannel/default.nix
Pavol Rusnak afd38ea1ee
stop using hardeningDisable = [ "fortify" ]; for Go packages
it seems that the issue #25959 is not present anymore
2019-10-27 14:44:26 +01:00

27 lines
620 B
Nix

{ lib, buildGoPackage, fetchFromGitHub }:
with lib;
buildGoPackage rec {
pname = "flannel";
version = "0.11.0";
rev = "v${version}";
goPackagePath = "github.com/coreos/flannel";
src = fetchFromGitHub {
inherit rev;
owner = "coreos";
repo = "flannel";
sha256 = "0akxlrrsm2w51g0qd7dnsdy0hdajx98sdhxw4iknjr2kn7j3gph9";
};
meta = {
description = "Network fabric for containers, designed for Kubernetes";
license = licenses.asl20;
homepage = https://github.com/coreos/flannel;
maintainers = with maintainers; [johanot offline];
platforms = with platforms; linux;
};
}