28 lines
671 B
Nix
28 lines
671 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bingrep";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "m4b";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-bHu3/f25U1QtRZv1z5OQSDMayOpLU6tbNaV00K55ZY8=";
|
|
};
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-cGDFbf8fUGbuxl8tOvKss5tqpBd1TY7TcwNzWwdw12A=";
|
|
|
|
meta = with lib; {
|
|
description = "Greps through binaries from various OSs and architectures, and colors them";
|
|
mainProgram = "bingrep";
|
|
homepage = "https://github.com/m4b/bingrep";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ minijackson ];
|
|
};
|
|
}
|