nixpkgs/pkgs/development/tools/analysis/bingrep/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
604 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2019-09-22 10:54:45 +00:00
rustPlatform.buildRustPackage rec {
pname = "bingrep";
2022-02-04 10:26:02 +00:00
version = "0.9.0";
2019-09-22 10:54:45 +00:00
src = fetchFromGitHub {
owner = "m4b";
repo = pname;
2019-12-12 21:55:19 +00:00
rev = "v${version}";
2022-02-04 10:26:02 +00:00
hash = "sha256-M3BYj1SKQKjEqP9cxaVlh7UeleDbcx6JN+UI6Ez+QJ8=";
2019-09-22 10:54:45 +00:00
};
2022-02-04 10:26:02 +00:00
cargoHash = "sha256-botAoLNg/qTh+cjPXcjo/Ol2Vktj/c5130k5falEuLY=";
2019-09-22 10:54:45 +00:00
meta = with lib; {
2019-09-22 10:54:45 +00:00
description = "Greps through binaries from various OSs and architectures, and colors them";
homepage = "https://github.com/m4b/bingrep";
license = licenses.mit;
maintainers = with maintainers; [ minijackson ];
};
}