gofumpt: Init at 2019-07-29 (#66892)

This commit is contained in:
Roman Volosatovs 2019-08-26 03:29:21 +03:00 committed by Wael Nasreddine
parent 81fe072a8f
commit 3f4144c30a
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gofumpt";
version = "2019-07-29";
src = fetchFromGitHub {
owner = "mvdan";
repo = pname;
rev = "96300e3d49fbb3b7bc9c6dc74f8a5cc0ef46f84b";
sha256 = "169hwggbhlr6ga045d6sa7xsan3mnj19qbh63i3h4rynqlppzvpf";
};
modSha256 = "1g7dkl60zwlk4q2gwx2780xys8rf2c4kqyy8gr99s5y342wsbx2g";
meta = with lib; {
description = "A stricter gofmt";
homepage = https://github.com/mvdan/gofumpt;
license = licenses.bsd3;
maintainers = with maintainers; [ rvolosatovs ];
};
}

View file

@ -16149,6 +16149,8 @@ in
goconvey = callPackage ../development/tools/goconvey { };
gofumpt = callPackage ../development/tools/gofumpt { };
gotags = callPackage ../development/tools/gotags { };
golint = callPackage ../development/tools/golint { };