depot/third_party/nixpkgs/pkgs/tools/misc/oci-image-tool/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
668 B
Nix

{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "oci-image-tool";
version = "1.0.0-rc1";
goPackagePath = "github.com/opencontainers/image-tools";
subPackages = [ "cmd/oci-image-tool" ];
src = fetchFromGitHub {
owner = "opencontainers";
repo = "image-tools";
rev = "v${version}";
sha256 = "0c4n69smqlkf0r6khy9gbg5f810qh9g8jqsl9kibb0dyswizr14r";
};
meta = {
description = "A collection of tools for working with the OCI image format specification";
homepage = "https://github.com/opencontainers/image-tools";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nzhang-zh ];
};
}