lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 26 lines 622 B view raw
1{ lib, buildGoPackage, fetchFromGitHub }: 2 3with lib; 4 5buildGoPackage rec { 6 pname = "flannel"; 7 version = "0.13.0"; 8 rev = "v${version}"; 9 10 goPackagePath = "github.com/coreos/flannel"; 11 12 src = fetchFromGitHub { 13 inherit rev; 14 owner = "coreos"; 15 repo = "flannel"; 16 sha256 = "0mmswnaybwpf18h832haapcs5b63wn5w2hax0smm3inldiggsbw8"; 17 }; 18 19 meta = { 20 description = "Network fabric for containers, designed for Kubernetes"; 21 license = licenses.asl20; 22 homepage = "https://github.com/coreos/flannel"; 23 maintainers = with maintainers; [johanot offline]; 24 platforms = with platforms; linux; 25 }; 26}