about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorRĂ©mi NICOLE <minijackson@users.noreply.github.com>2019-09-22 10:54:45 +0000
committerzimbatm <zimbatm@zimbatm.com>2019-09-22 10:54:45 +0000
commit20de44845d3ec233e9a1d40579aef9e5108ca7d8 (patch)
tree984690696c804dad92060b32c4bd91cea9cee88b /pkgs/development/tools/analysis
parenta486f0178d2823baf8bdffdc867e946140e14894 (diff)
downloadnixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar.gz
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar.bz2
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar.lz
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar.xz
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.tar.zst
nixlib-20de44845d3ec233e9a1d40579aef9e5108ca7d8.zip
bingrep: init at 0.7.0 (#69021)
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/bingrep/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/bingrep/default.nix b/pkgs/development/tools/analysis/bingrep/default.nix
new file mode 100644
index 000000000000..5fd6b402e0b0
--- /dev/null
+++ b/pkgs/development/tools/analysis/bingrep/default.nix
@@ -0,0 +1,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 ];
+  };
+}