docker-color-output: init at 2.5.1
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildGoModule,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "docker-color-output";
|
||||
version = "2.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "devemio";
|
||||
repo = "docker-color-output";
|
||||
tag = version;
|
||||
hash = "sha256-rnCZ+6t6iOiLBynp1EPshO+/otAdtu8yy1FqFkYB07w=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Add color to the Docker CLI";
|
||||
mainProgram = "docker-color-output";
|
||||
license = lib.licenses.mit;
|
||||
homepage = "https://github.com/devemio/docker-color-output";
|
||||
changelog = "https://github.com/devemio/docker-color-output/releases/tag/${version}";
|
||||
maintainers = with lib.maintainers; [ sguimmara ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user