mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
umoci: 0.4.4
This commit is contained in:
parent
66b7ad13c9
commit
f23870a45b
3 changed files with 31 additions and 0 deletions
|
@ -7397,4 +7397,10 @@
|
|||
githubId = 1986844;
|
||||
name = "Daniel Wheeler";
|
||||
};
|
||||
zokrezyl = {
|
||||
email = "zokrezyl@gmail.com";
|
||||
github = "zokrezyl";
|
||||
githubId = 51886259;
|
||||
name = "Zokre Zyl";
|
||||
};
|
||||
}
|
||||
|
|
23
pkgs/applications/virtualization/umoci/default.nix
Normal file
23
pkgs/applications/virtualization/umoci/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -217,6 +217,8 @@ in
|
|||
|
||||
dumb-init = callPackage ../applications/virtualization/dumb-init {};
|
||||
|
||||
umoci = callPackage ../applications/virtualization/umoci {};
|
||||
|
||||
dispad = callPackage ../tools/X11/dispad { };
|
||||
|
||||
dump1090 = callPackage ../applications/radio/dump1090 { };
|
||||
|
|
Loading…
Reference in a new issue