2021-01-11 08:54:33 +01:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib, stdenv, docker }:
|
2017-11-22 16:06:57 +01:00
|
|
|
|
2020-12-14 12:05:23 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "docker-ls";
|
2020-12-14 12:05:23 +01:00
|
|
|
version = "0.5.0";
|
2017-11-22 16:06:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mayflower";
|
|
|
|
repo = "docker-ls";
|
2018-05-28 14:59:57 +02:00
|
|
|
rev = "v${version}";
|
2020-12-14 12:05:23 +01:00
|
|
|
sha256 = "sha256-VyVrCBdIZAQ+p0leD6i4sMxD4p6nEXG9Si+nJGdUQPM=";
|
2017-11-22 16:06:57 +01:00
|
|
|
};
|
|
|
|
|
2020-12-14 12:05:23 +01:00
|
|
|
vendorSha256 = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU=";
|
2017-11-22 16:06:57 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-11-22 16:06:57 +01: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 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mayflower/docker-ls";
|
2017-11-22 16:06:57 +01:00
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
platforms = docker.meta.platforms;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|