Unverified Commit 226e1986 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents d7d18819 3093de2c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+33 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}