Unverified Commit 530a0c6e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #301363 from fabaff/cero

cero: init at 1.3.0
parents 6d669bb7 92d39c06
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "cero";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "glebarez";
    repo = "cero";
    rev = "v${version}";
    hash = "sha256-t2u6Q8CatUIQKk146uor367vr85O6KU8Gf8LZFZTESU=";
  };

  vendorHash = "sha256-VwzjkZLKovmPjvEmANMgZTtkwiM+dyjfTqftvK+muPM=";

  ldflags = [
    "-s"
    "-w"
  ];

  meta = with lib; {
    description = "Scrape domain names from SSL certificates of arbitrary hosts";
    homepage = "https://github.com/glebarez/cero";
    changelog = "https://github.com/glebarez/cero/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "cero";
  };
}