mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kiterunner";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "assetnote";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-vIYPpkbqyk0zH10DGp2FF0aI4lFpsZavulBIiR/3kiA=";
|
|
};
|
|
|
|
vendorHash = "sha256-fgtDP6X84iPO2Tcwq5jl8700PDKixJlIihgNaPX/n9k=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/assetnote/kiterunner/cmd/kiterunner/cmd.Version=${version}"
|
|
];
|
|
|
|
subPackages = [ "./cmd/kiterunner" ];
|
|
|
|
# Test data is missing in the repo
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Contextual content discovery tool";
|
|
mainProgram = "kiterunner";
|
|
longDescription = ''
|
|
Kiterunner is a tool that is capable of not only performing traditional
|
|
content discovery at lightning fast speeds, but also bruteforcing routes
|
|
and endpoints in modern applications.
|
|
'';
|
|
homepage = "https://github.com/assetnote/kiterunner";
|
|
license = with licenses; [ agpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|