umoci: 0.4.4

This commit is contained in:
zokrezyl
2019-10-30 09:43:44 +01:00
committed by Emery Hemingway
parent 66b7ad13c9
commit f23870a45b
3 changed files with 31 additions and 0 deletions
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "umoci";
version = "0.4.4";
goPackagePath = "github.com/openSUSE/umoci";
src = fetchFromGitHub {
owner = "openSUSE";
repo = "umoci";
rev = "v${version}";
sha256 = "1mmk9y6xk0qk5rgysmm7x16b025zzwa2sd13jd32drd48scai2dw";
};
meta = with stdenv.lib; {
description = "umoci modifies Open Container images";
homepage = https://umo.ci;
license = licenses.asl20;
maintainers = with maintainers; [ zokrezyl ];
platforms = platforms.linux;
};
}