summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Martin <penguwin@penguwin.eu>2020-10-06 20:09:40 +0200
committerProfpatsch <mail@profpatsch.de>2020-10-06 22:24:22 +0200
commitc2ebb8becb3eed09bf3b4e3b9423f75aad04e6ab (patch)
tree2d1416e14eedb4c963ca0d43f8dfa422845e18e0
parent2927f3fb45be21d5811a88d1329b4d6795707b9e (diff)
glow 0.2.0 -> 1.0.0
-rw-r--r--maintainers/maintainer-list.nix6
-rw-r--r--pkgs/applications/editors/glow/default.nix10
2 files changed, 11 insertions, 5 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index bcbea3529cbc..57d075c1549c 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -6567,6 +6567,12 @@
githubId = 8641;
name = "Pierre Carrier";
};
+ penguwin = {
+ email = "penguwin@penguwin.eu";
+ github = "penguwin";
+ githubId = 13225611;
+ name = "Nicolas Martin";
+ };
periklis = {
email = "theopompos@gmail.com";
github = "periklis";
diff --git a/pkgs/applications/editors/glow/default.nix b/pkgs/applications/editors/glow/default.nix
index 347c5970cae6..69d4f91713ac 100644
--- a/pkgs/applications/editors/glow/default.nix
+++ b/pkgs/applications/editors/glow/default.nix
@@ -2,25 +2,25 @@
buildGoModule rec {
pname = "glow";
- version = "0.2.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "glow";
rev = "v${version}";
- sha256 = "0vhl8d7xxqqyl916nh8sgm1xdaf7xlc3r18464bd2av22q9yz68n";
+ sha256 = "0cgi7rz5al5smjsna9p2v5zxjn3lwpnhd38vpr1qhz8n0z37vss5";
};
- vendorSha256 = "1c16s5xiqr36azh2w90wg14jlw67ca2flbgjijpz7qd0ypxyfqlk";
+ vendorSha256 = "180g6d9w3lfmxj4843kqvq4ikg8lwmwprgfxdgz1lzvjmbfjj3g9";
doCheck = false;
buildFlagsArray = [ "-ldflags=" "-X=main.Version=${version}" ];
meta = with lib; {
- description = "Render markdown on the CLI";
+ description = "Render markdown on the CLI, with pizzazz!";
homepage = "https://github.com/charmbracelet/glow";
license = licenses.mit;
- maintainers = with maintainers; [ ehmry filalex77 ];
+ maintainers = with maintainers; [ ehmry filalex77 penguwin ];
};
}