mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
chroma: init at 0.8.0
This commit is contained in:
parent
4451f9b68f
commit
1f6d8426fd
24
pkgs/tools/text/chroma/default.nix
Normal file
24
pkgs/tools/text/chroma/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "chroma";
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alecthomas";
|
||||||
|
repo = "chroma";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "066a6rdmf670d3v5sc7chbn7db09ldgxjympb03pcqwk644dixb1";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "16cnc4scgkx8jan81ymha2q1kidm6hzsnip5mmgbxpqcc2h7hv9m";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/chroma" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/alecthomas/chroma";
|
||||||
|
description = "A general purpose syntax highlighter in pure Go";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.sternenseemann ];
|
||||||
|
};
|
||||||
|
}
|
@ -902,6 +902,8 @@ in
|
|||||||
withDriver = false;
|
withDriver = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
chroma = callPackage ../tools/text/chroma { };
|
||||||
|
|
||||||
clair = callPackage ../tools/admin/clair { };
|
clair = callPackage ../tools/admin/clair { };
|
||||||
|
|
||||||
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
||||||
|
Loading…
Reference in New Issue
Block a user