Merge pull request #279165 from shard77/patch-4
assetfinder: init at v0.1.1
This commit is contained in:
commit
9a472578e7
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/as/assetfinder/package.nix
Normal file
28
pkgs/by-name/as/assetfinder/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue