aboutsummaryrefslogtreecommitdiff
path: root/nix/manifest-tool.nix
blob: 1090a6efe43b8b1599a4ba9b1f8349a0a20dd099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pkgs:
pkgs.buildGoModule rec {
  pname = "manifest-tool";
  version = "2.0.5";

  src = pkgs.fetchFromGitHub {
    owner = "estesp";
    repo = "manifest-tool";
    rev = "v${version}";
    sha256 = "hjCGKnE0yrlnF/VIzOwcDzmQX3Wft+21KCny/opqdLg=";
  } + "/v2";

  vendorSha256 = null;

  checkPhase = "true";

  meta = with pkgs.lib; {
    description =
      "Command line tool to create and query container image manifest list/indexes";
    homepage = "https://github.com/estesp/manifest-tool";
    license = licenses.asl20;
    platforms = platforms.linux;
  };
}