Skip to content

Commit 226e198

Browse files
authored
docker-color-output: init at 2.5.1 (#384824)
2 parents d7d1881 + 3093de2 commit 226e198

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21495,6 +21495,12 @@
2149521495
githubId = 1151264;
2149621496
name = "Sebastian Graf";
2149721497
};
21498+
sguimmara = {
21499+
email = "[email protected]";
21500+
github = "sguimmara";
21501+
githubId = 5512096;
21502+
name = "Sébastien Guimmara";
21503+
};
2149821504
shackra = {
2149921505
name = "Jorge Javier Araya Navarro";
2150021506
email = "[email protected]";
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
buildGoModule,
5+
nix-update-script,
6+
}:
7+
8+
buildGoModule rec {
9+
pname = "docker-color-output";
10+
version = "2.5.1";
11+
12+
src = fetchFromGitHub {
13+
owner = "devemio";
14+
repo = "docker-color-output";
15+
tag = version;
16+
hash = "sha256-rnCZ+6t6iOiLBynp1EPshO+/otAdtu8yy1FqFkYB07w=";
17+
};
18+
19+
vendorHash = null;
20+
21+
passthru = {
22+
updateScript = nix-update-script { };
23+
};
24+
25+
meta = {
26+
description = "Add color to the Docker CLI";
27+
mainProgram = "docker-color-output";
28+
license = lib.licenses.mit;
29+
homepage = "https://github.com/devemio/docker-color-output";
30+
changelog = "https://github.com/devemio/docker-color-output/releases/tag/${version}";
31+
maintainers = with lib.maintainers; [ sguimmara ];
32+
};
33+
}

0 commit comments

Comments
 (0)