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

24 lines
641 B
Nix
Raw Normal View History

2020-11-22 05:50:53 -08:00
{ lib, fetchFromGitHub, buildGoModule }:
2018-10-31 11:21:52 -07:00
2020-11-22 05:50:53 -08:00
buildGoModule rec {
pname = "errcheck";
2021-02-25 01:17:04 -08:00
version = "1.6.0";
2018-10-31 11:21:52 -07:00
src = fetchFromGitHub {
owner = "kisielk";
repo = "errcheck";
rev = "v${version}";
2021-02-25 01:17:04 -08:00
sha256 = "sha256-Przf2c2jFNdkUq7IOUD7ChXHiSayAz4xTsNzajycYZ0=";
2018-10-31 11:21:52 -07:00
};
2021-01-18 08:15:56 -08:00
vendorSha256 = "sha256-rluaBdW+w2zPThELlBwX/6LXDgc2aIk/ucbrsrABpVc=";
2018-10-31 11:21:52 -07:00
meta = with lib; {
description = "Program for checking for unchecked errors in go programs";
homepage = "https://github.com/kisielk/errcheck";
2018-10-31 11:21:52 -07:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}