Merge pull request #80980 from zowoq/umoci

umoci: 0.4.4 -> 0.4.5
This commit is contained in:
Mario Rodas 2020-02-25 06:36:41 -05:00 committed by GitHub
commit d8d49ea334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -1,21 +1,23 @@
{ stdenv, fetchFromGitHub, buildGoPackage }: { lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec { buildGoPackage rec {
pname = "umoci"; pname = "umoci";
version = "0.4.4"; version = "0.4.5";
goPackagePath = "github.com/openSUSE/umoci";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openSUSE"; owner = "openSUSE";
repo = "umoci"; repo = "umoci";
rev = "v${version}"; rev = "v${version}";
sha256 = "1mmk9y6xk0qk5rgysmm7x16b025zzwa2sd13jd32drd48scai2dw"; sha256 = "1gzj4nnys73wajdwjn5jsskvnhzh8s2vmyl76ax8drpvw19bd5g3";
}; };
meta = with stdenv.lib; { goPackagePath = "github.com/openSUSE/umoci";
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
meta = with lib; {
description = "umoci modifies Open Container images"; description = "umoci modifies Open Container images";
homepage = https://umo.ci; homepage = "https://umo.ci";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ zokrezyl ]; maintainers = with maintainers; [ zokrezyl ];
platforms = platforms.linux; platforms = platforms.linux;