reg: init at 0.16.1
Signed-off-by: Rafael Fernández López <ereslibre@ereslibre.es>
This commit is contained in:
parent
891a21cdde
commit
0ed7960274
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/virtualization/reg/default.nix
Normal file
26
pkgs/tools/virtualization/reg/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildGoModule
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "reg";
|
||||
version = "0.16.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "genuinetools";
|
||||
repo = "reg";
|
||||
rev = "v${version}";
|
||||
sha256 = "1jlza1czfssssi3y9zi6kr8k9msfa7vp215ibhwbz4h97av5xw5m";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Docker registry v2 command line client and repo listing generator with security checks";
|
||||
homepage = "https://github.com/genuinetools/reg";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ereslibre ];
|
||||
};
|
||||
}
|
|
@ -3244,6 +3244,8 @@ in
|
|||
|
||||
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
|
||||
|
||||
reg = callPackage ../tools/virtualization/reg { };
|
||||
|
||||
river = callPackage ../applications/window-managers/river { };
|
||||
|
||||
rmapi = callPackage ../applications/misc/remarkable/rmapi { };
|
||||
|
|
Loading…
Reference in a new issue