errcheck: init at 1.1.0
This commit is contained in:
parent
126e64e658
commit
6d7413e54a
29
pkgs/development/tools/errcheck/default.nix
Normal file
29
pkgs/development/tools/errcheck/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ buildGoPackage
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "errcheck-${version}";
|
||||
version = "1.1.0";
|
||||
|
||||
goPackagePath = "github.com/kisielk/errcheck";
|
||||
excludedPackages = "\\(testdata\\)";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kisielk";
|
||||
repo = "errcheck";
|
||||
rev = "v${version}";
|
||||
sha256 = "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = with lib; {
|
||||
description = "errcheck is a program for checking for unchecked errors in go programs.";
|
||||
homepage = https://github.com/kisielk/errcheck;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
20
pkgs/development/tools/errcheck/deps.nix
generated
Normal file
20
pkgs/development/tools/errcheck/deps.nix
generated
Normal file
@ -0,0 +1,20 @@
|
||||
[
|
||||
{
|
||||
goPackagePath = "github.com/kisielk/gotool";
|
||||
fetch = {
|
||||
type = "git";
|
||||
url = "https://github.com/kisielk/gotool";
|
||||
rev = "80517062f582ea3340cd4baf70e86d539ae7d84d";
|
||||
sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn";
|
||||
};
|
||||
}
|
||||
{
|
||||
goPackagePath = "golang.org/x/tools";
|
||||
fetch = {
|
||||
type = "git";
|
||||
url = "https://go.googlesource.com/tools";
|
||||
rev = "3a10b9bf0a52df7e992a8c3eb712a86d3c896c75";
|
||||
sha256 = "19f3dijcc54jnd7458jab2dgpd0gzccmv2qympd9wi8cc8jpnhws";
|
||||
};
|
||||
}
|
||||
]
|
@ -1313,6 +1313,8 @@ with pkgs;
|
||||
|
||||
envsubst = callPackage ../tools/misc/envsubst { };
|
||||
|
||||
errcheck = callPackage ../development/tools/errcheck { };
|
||||
|
||||
eschalot = callPackage ../tools/security/eschalot { };
|
||||
|
||||
esptool = callPackage ../tools/misc/esptool { };
|
||||
|
Loading…
Reference in New Issue
Block a user