nixpkgs/pkgs/tools/security/goverview/default.nix
2023-03-09 18:57:33 +01:00

35 lines
750 B
Nix

{ 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 ];
};
}