mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gofumpt: Init at 2019-07-29 (#66892)
This commit is contained in:
parent
81fe072a8f
commit
3f4144c30a
2 changed files with 24 additions and 0 deletions
22
pkgs/development/tools/gofumpt/default.nix
Normal file
22
pkgs/development/tools/gofumpt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue