2021-01-25 08:26:54 +00:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib, docker }:
|
2017-11-22 15:06:57 +00:00
|
|
|
|
2020-12-14 11:05:23 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "docker-ls";
|
2021-02-06 10:18:28 +00:00
|
|
|
version = "0.5.1";
|
2017-11-22 15:06:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mayflower";
|
|
|
|
repo = "docker-ls";
|
2018-05-28 13:59:57 +01:00
|
|
|
rev = "v${version}";
|
2021-02-06 10:18:28 +00:00
|
|
|
sha256 = "sha256-4+REt0NH4S367qFsyJncVedUrC4t1zw5o0CLTiQfIz8=";
|
2017-11-22 15:06:57 +00:00
|
|
|
};
|
|
|
|
|
2020-12-14 11:05:23 +00:00
|
|
|
vendorSha256 = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU=";
|
2017-11-22 15:06:57 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-22 15:06:57 +00:00
|
|
|
description = "Tools for browsing and manipulating docker registries";
|
|
|
|
longDescription = ''
|
|
|
|
Docker-ls is a set of CLI tools for browsing and manipulating docker registries.
|
|
|
|
In particular, docker-ls can handle authentication and display the sha256 content digests associated
|
|
|
|
with tags.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mayflower/docker-ls";
|
2017-11-22 15:06:57 +00:00
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
platforms = docker.meta.platforms;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|