mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
729 B
Nix
28 lines
729 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoPackage
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "assetfinder";
|
|
version = "0.1.1";
|
|
|
|
goPackagePath = "github.com/tomnomnom/assetfinder";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tomnomnom";
|
|
repo = "assetfinder";
|
|
rev = "v${version}";
|
|
hash = "sha256-7+YF1VXBcFehKw9JzurmXNu8yeZPdqfQEuaqwtR4AuA=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tomnomnom/assetfinder";
|
|
description = "Find domains and subdomains related to a given domain";
|
|
mainProgram = "assetfinder";
|
|
maintainers = with maintainers; [ shard7 ];
|
|
platforms = platforms.unix;
|
|
sourceProvenance = with sourceTypes; [ fromSource binaryNativeCode ];
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|