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