docker-color-output: init at 2.5.1 (#384824)

This commit is contained in:
Gaétan Lepage
2025-03-12 09:02:00 +01:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -21495,6 +21495,12 @@
githubId = 1151264;
name = "Sebastian Graf";
};
sguimmara = {
email = "fair.lid2365@fastmail.com";
github = "sguimmara";
githubId = 5512096;
name = "Sébastien Guimmara";
};
shackra = {
name = "Jorge Javier Araya Navarro";
email = "jorge@esavara.cr";
@@ -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 ];
};
}