nixpkgs/pkgs/development/tools/gofumpt/default.nix

25 lines
561 B
Nix
Raw Normal View History

2019-08-26 01:29:21 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gofumpt";
2022-01-02 20:14:57 +00:00
version = "0.2.0";
2019-08-26 01:29:21 +01:00
src = fetchFromGitHub {
owner = "mvdan";
repo = pname;
2021-01-13 21:17:31 +00:00
rev = "v${version}";
2022-01-02 20:14:57 +00:00
sha256 = "sha256-Kgj3f90bAtaVl4mby6FQr4t4BT4I3QLtHhvO10f1BOk=";
2019-08-26 01:29:21 +01:00
};
2022-01-02 20:14:57 +00:00
vendorSha256 = "sha256-gxxK2eUmYUqHjt8HP6OANaHsO43wCaodUDR4BlMY8Zw=";
2019-08-26 01:29:21 +01:00
doCheck = false;
2019-08-26 01:29:21 +01:00
meta = with lib; {
description = "A stricter gofmt";
homepage = "https://github.com/mvdan/gofumpt";
2019-08-26 01:29:21 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ rvolosatovs ];
};
}