Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bba28099b268
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 349de09c7cfb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 12, 2020

  1. go-md2man: 1.0.6 -> 2.0.0

    zowoq committed Apr 12, 2020
    Copy the full SHA
    665369a View commit details
  2. Merge pull request #85054 from zowoq/go-md2man

    go-md2man: 1.0.6 -> 2.0.0
    marsam authored Apr 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    349de09 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/development/tools/misc/md2man/default.nix
8 changes: 3 additions & 5 deletions pkgs/development/tools/misc/md2man/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
{ lib, buildGoPackage, fetchFromGitHub }:

with lib;

buildGoPackage rec {
pname = "go-md2man";
version = "1.0.6";
version = "2.0.0";

goPackagePath = "github.com/cpuguy83/go-md2man";

src = fetchFromGitHub {
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";