mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
glow: init at 0.1.3
This commit is contained in:
parent
c5aacb2350
commit
54184dfc7e
21
pkgs/applications/editors/glow/default.nix
Normal file
21
pkgs/applications/editors/glow/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "glow";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "charmbracelet";
|
||||
repo = "glow";
|
||||
rev = "v${version}";
|
||||
sha256 = "16zadrp42y01hi83hg47cw6c9zpw8z4xfssb5pxkmd2ynihaxfv5";
|
||||
};
|
||||
|
||||
modSha256 = "1q67j9wg0kgb41zjgdbcrywxbwh597n8shwnwgl2xa6f7fvzpr4f";
|
||||
|
||||
meta = src.meta // {
|
||||
description = "Render markdown on the CLI";
|
||||
maintainers = with lib.maintainers; [ ehmry filalex77 ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
|
@ -19179,6 +19179,8 @@ in
|
|||
inherit (darwin) IOKit;
|
||||
};
|
||||
|
||||
glow = callPackage ../applications/editors/glow { };
|
||||
|
||||
glowing-bear = callPackage ../applications/networking/irc/glowing-bear { };
|
||||
|
||||
gmtk = callPackage ../development/libraries/gmtk { };
|
||||
|
|
Loading…
Reference in a new issue