umoci: 0.4.5 -> 0.4.6

https://github.com/opencontainers/umoci/releases/tag/v0.4.6

umoci has been adopted by the Open Container Initative as a reference
implementation of the OCI Image Specification.
This commit is contained in:
zowoq 2020-06-28 13:49:13 +10:00
parent 9287f066ed
commit 3f3f8099ad

View File

@ -7,13 +7,13 @@
buildGoModule rec {
pname = "umoci";
version = "0.4.5";
version = "0.4.6";
src = fetchFromGitHub {
owner = "openSUSE";
owner = "opencontainers";
repo = "umoci";
rev = "v${version}";
sha256 = "1gzj4nnys73wajdwjn5jsskvnhzh8s2vmyl76ax8drpvw19bd5g3";
sha256 = "0jaar26l940yh77cs31c3zndiycp85m3fz4zivcibzi68g6n6yzg";
};
vendorSha256 = null;
@ -24,7 +24,7 @@ buildGoModule rec {
postInstall = ''
sed -i '/SHELL =/d' Makefile
make local-doc
make docs
installManPage doc/man/*.[1-9]
'';
@ -33,6 +33,6 @@ buildGoModule rec {
homepage = "https://umo.ci";
license = licenses.asl20;
maintainers = with maintainers; [ zokrezyl ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}