summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/bingrep/default.nix
blob: 5fd6b402e0b039f6997531686348aecc08a3b867 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "bingrep";
  version = "0.7.0";

  src = fetchFromGitHub {
    owner = "m4b";
    repo = pname;
    # Currently doesn't tag versions so we're using the raw revision
    rev = "33d56a4b020c4a3c111294fe41c613d5e8e9c7af";
    sha256 = "0lg92wqknr584b44i5v4f97js56j89z7n8p2zpm8j1pfhjmgcigs";
  };

  cargoSha256 = "1yxm7waldhilx7wh1ag79rkp8kypb9k1px4ynmzq11r72yl2p4m7";

  meta = with stdenv.lib; {
    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 ];
  };
}