summary refs log tree commit diff
path: root/pkgs/tools/virtualization/cri-tools/default.nix
blob: 120727f3873dc04f305b0feffc3b89b119a068df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildGoPackage, fetchurl }:

buildGoPackage
  { name = "cri-tools-1.0.0-alpha.0";
    src = fetchurl
      { url = "https://github.com/kubernetes-incubator/cri-tools/archive/v1.0.0-alpha.0.tar.gz";
        sha256 = "1la26f38xafb7g9hrppjq7gmajiyr8idcwbian7n412q9m0lb3ic";
      };

    goPackagePath = "github.com/kubernetes-incubator/cri-tools";
    subPackages = [ "cmd/crictl" "cmd/critest" ];

    goDeps = ./deps.nix;
  }