lol

Merge pull request #311881 from CherryKitten/init-gungnir

gungnir: init at 1.0.8

authored by

Raghav Sood and committed by
GitHub
22b25d36 77ae5be1

+39
+10
maintainers/maintainer-list.nix
··· 3533 3533 githubId = 28303440; 3534 3534 name = "Max Hausch"; 3535 3535 }; 3536 + cherrykitten = { 3537 + email = "contact@cherrykitten.dev"; 3538 + github = "cherrykitten"; 3539 + githubId = 20300586; 3540 + matrix = "@sammy:cherrykitten.dev"; 3541 + name = "CherryKitten"; 3542 + keys = [{ 3543 + fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F"; 3544 + }]; 3545 + }; 3536 3546 chessai = { 3537 3547 email = "chessai1996@gmail.com"; 3538 3548 github = "chessai";
+29
pkgs/by-name/gu/gungnir/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "gungnir"; 8 + version = "1.0.8"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "g0ldencybersec"; 12 + repo = "gungnir"; 13 + rev = "v${version}"; 14 + hash = "sha256-k6fxAvUBAAcTHzdeGhekYhPpnS05jHq/7EqxafQfMio="; 15 + }; 16 + 17 + vendorHash = "sha256-r2aU59L0fnSdc/lpR04K/GQ1eZ7ihV+tKlyuS6sPX2o="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = with lib; { 22 + description = "A command-line tool that continuously monitors certificate transparency (CT) logs for newly issued SSL/TLS certificates"; 23 + homepage = "https://github.com/g0ldencybersec/gungnir"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ cherrykitten ]; 26 + mainProgram = "gungnir"; 27 + }; 28 + } 29 +