Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "certgraph"; 8 version = "20220513"; 9 10 src = fetchFromGitHub { 11 owner = "lanrat"; 12 repo = pname; 13 rev = version; 14 sha256 = "sha256-7tvPiJHZE9X7I79DFNF1ZAQiaAkrtrXiD2fY7AkbWMk="; 15 }; 16 17 vendorSha256 = "sha256-ErTn7pUCtz6ip2kL8FCe+3Rhs876xtqto+z5nZqQ6cI="; 18 19 meta = with lib; { 20 description = "Intelligence tool to crawl the graph of certificate alternate names"; 21 homepage = "https://github.com/lanrat/certgraph"; 22 license = with licenses; [ gpl2Only ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}