File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
pkgs/by-name/do/docker-color-output Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 2149521495 githubId = 1151264;
2149621496 name = "Sebastian Graf";
2149721497 };
21498+ sguimmara = {
21499+ 21500+ github = "sguimmara";
21501+ githubId = 5512096;
21502+ name = "Sébastien Guimmara";
21503+ };
2149821504 shackra = {
2149921505 name = "Jorge Javier Araya Navarro";
2150021506
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments