Merge pull request #18481 from offlinehacker/pkgs/docker/1.12.1

docker: 1.10.3 -> 1.12.1
This commit is contained in:
Jaka Hudoklin
2016-09-13 15:59:18 +02:00
committed by GitHub
7 changed files with 208 additions and 25 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv, lib, buildGoPackage, go, fetchFromGitHub }:
with lib;
buildGoPackage rec {
name = "go-md2man-${version}";
version = "1.0.6";
goPackagePath = "github.com/cpuguy83/go-md2man";
src = fetchFromGitHub {
rev = "v${version}";
owner = "cpuguy83";
repo = "go-md2man";
sha256 = "1rm3zjrmfpzy0l3qp02xmd5pqzl77pdql9pbxhl0k1qw2vfzrjv6";
};
meta = {
description = "Go tool to convert markdown to man pages";
license = licenses.mit;
homepage = https://github.com/cpuguy83/go-md2man;
maintainers = with maintainers; [offline];
platforms = platforms.linux;
};
}