reg: init at 0.16.1

Signed-off-by: Rafael Fernández López <ereslibre@ereslibre.es>
This commit is contained in:
Rafael Fernández López 2021-08-07 17:34:08 +02:00
parent 891a21cdde
commit 0ed7960274
No known key found for this signature in database
GPG key ID: 312702B051BDA6C9
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };