mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
oci-image-tool: init at 1.0.0-rc1
This commit is contained in:
parent
ca0639837c
commit
2660bc201b
|
@ -3235,6 +3235,11 @@
|
||||||
github = "nyarly";
|
github = "nyarly";
|
||||||
name = "Judson Lester";
|
name = "Judson Lester";
|
||||||
};
|
};
|
||||||
|
nzhang-zh = {
|
||||||
|
email = "n.zhang.hp.au@gmail.com";
|
||||||
|
github = "nzhang-zh";
|
||||||
|
name = "Ning Zhang";
|
||||||
|
};
|
||||||
obadz = {
|
obadz = {
|
||||||
email = "obadz-nixos@obadz.com";
|
email = "obadz-nixos@obadz.com";
|
||||||
github = "obadz";
|
github = "obadz";
|
||||||
|
|
23
pkgs/tools/misc/oci-image-tool/default.nix
Normal file
23
pkgs/tools/misc/oci-image-tool/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, fetchFromGitHub, buildGoPackage }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "oci-image-tool-${version}";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4562,6 +4562,8 @@ in
|
||||||
|
|
||||||
obexd = callPackage ../tools/bluetooth/obexd { };
|
obexd = callPackage ../tools/bluetooth/obexd { };
|
||||||
|
|
||||||
|
oci-image-tool = callPackage ../tools/misc/oci-image-tool { };
|
||||||
|
|
||||||
ocproxy = callPackage ../tools/networking/ocproxy { };
|
ocproxy = callPackage ../tools/networking/ocproxy { };
|
||||||
|
|
||||||
ocserv = callPackage ../tools/networking/ocserv { };
|
ocserv = callPackage ../tools/networking/ocserv { };
|
||||||
|
|
Loading…
Reference in a new issue