about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-12 03:45:45 -0500
committerGitHub <noreply@github.com>2020-04-12 03:45:45 -0500
commit349de09c7cfb449d018ba376a69e283005d3aefa (patch)
treefb6bcc4e2e8bd3111ec76e66bbabf90e03e7361e /pkgs
parentbba28099b26807a57783d94ba12bf2463b7355c6 (diff)
parent665369a20585b6b39a5a3070aaf2a8cabe3bbde5 (diff)
downloadnixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar.gz
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar.bz2
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar.lz
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar.xz
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.tar.zst
nixlib-349de09c7cfb449d018ba376a69e283005d3aefa.zip
Merge pull request #85054 from zowoq/go-md2man
go-md2man: 1.0.6 -> 2.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/md2man/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/md2man/default.nix b/pkgs/development/tools/misc/md2man/default.nix
index eaff8e1f88ae..7db3c902c7cf 100644
--- a/pkgs/development/tools/misc/md2man/default.nix
+++ b/pkgs/development/tools/misc/md2man/default.nix
@@ -1,10 +1,8 @@
 { lib, buildGoPackage, fetchFromGitHub }:
 
-with lib;
-
 buildGoPackage rec {
   pname = "go-md2man";
-  version = "1.0.6";
+  version = "2.0.0";
 
   goPackagePath = "github.com/cpuguy83/go-md2man";
 
@@ -12,10 +10,10 @@ buildGoPackage rec {
     rev = "v${version}";
     owner = "cpuguy83";
     repo = "go-md2man";
-    sha256 = "1rm3zjrmfpzy0l3qp02xmd5pqzl77pdql9pbxhl0k1qw2vfzrjv6";
+    sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv";
   };
 
-  meta = {
+  meta = with lib; {
     description = "Go tool to convert markdown to man pages";
     license = licenses.mit;
     homepage = "https://github.com/cpuguy83/go-md2man";