goverview: init at 1.0.1
This commit is contained in:
parent
6a231a6eb7
commit
840345f0c1
34
pkgs/tools/security/goverview/default.nix
Normal file
34
pkgs/tools/security/goverview/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "goverview";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "j3ssie";
|
||||||
|
repo = "goverview";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-IgvpMuDwMK9IdPs1IRbPbpgr7xZuDX3boVT5d7Lb+3w=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-i/m2s9e8PDfGmguNihynVI3Y7nAXC4weoWFXOwUVDSE=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-w"
|
||||||
|
"-s"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Tests require network access
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool to get an overview of the list of URLs";
|
||||||
|
homepage = "https://github.com/j3ssie/goverview";
|
||||||
|
changelog = "https://github.com/j3ssie/goverview/releases/tag/v${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -26606,6 +26606,8 @@ with pkgs;
|
|||||||
|
|
||||||
govendor = callPackage ../development/tools/govendor { };
|
govendor = callPackage ../development/tools/govendor { };
|
||||||
|
|
||||||
|
goverview = callPackage ../tools/security/goverview { };
|
||||||
|
|
||||||
go-tools = callPackage ../development/tools/go-tools { };
|
go-tools = callPackage ../development/tools/go-tools { };
|
||||||
|
|
||||||
gotest = callPackage ../development/tools/gotest { };
|
gotest = callPackage ../development/tools/gotest { };
|
||||||
|
Loading…
Reference in New Issue
Block a user