mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
cero: init at 1.3.0
Scrape domain names from SSL certificates of arbitrary hosts https://github.com/glebarez/cero
This commit is contained in:
parent
3bf7586a97
commit
92d39c06c3
33
pkgs/by-name/ce/cero/package.nix
Normal file
33
pkgs/by-name/ce/cero/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user