nixpkgs/pkgs/by-name/gu/gungnir/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
720 B
Nix
Raw Normal View History

2024-05-15 11:21:26 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gungnir";
2024-05-30 17:30:22 +03:00
version = "1.0.9";
2024-05-15 11:21:26 +03:00
src = fetchFromGitHub {
owner = "g0ldencybersec";
repo = "gungnir";
rev = "v${version}";
2024-05-30 17:30:22 +03:00
hash = "sha256-A4MPRsUSeYwKlhCHByty6T33wEp/BopZMDWOnOqlQqQ=";
2024-05-15 11:21:26 +03:00
};
vendorHash = "sha256-r2aU59L0fnSdc/lpR04K/GQ1eZ7ihV+tKlyuS6sPX2o=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Command-line tool that continuously monitors certificate transparency (CT) logs for newly issued SSL/TLS certificates";
homepage = "https://github.com/g0ldencybersec/gungnir";
license = licenses.mit;
maintainers = with maintainers; [ cherrykitten ];
mainProgram = "gungnir";
};
}