lol

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

authored by

Gaétan Lepage and committed by
GitHub
226e1986 d7d18819

+39
+6
maintainers/maintainer-list.nix
··· 21495 21495 githubId = 1151264; 21496 21496 name = "Sebastian Graf"; 21497 21497 }; 21498 + sguimmara = { 21499 + email = "fair.lid2365@fastmail.com"; 21500 + github = "sguimmara"; 21501 + githubId = 5512096; 21502 + name = "Sébastien Guimmara"; 21503 + }; 21498 21504 shackra = { 21499 21505 name = "Jorge Javier Araya Navarro"; 21500 21506 email = "jorge@esavara.cr";
+33
pkgs/by-name/do/docker-color-output/package.nix
··· 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 + }