summary refs log tree commit diff
path: root/pkgs/development/tools/cargo-flamegraph
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/cargo-flamegraph')
-rw-r--r--pkgs/development/tools/cargo-flamegraph/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/tools/cargo-flamegraph/default.nix b/pkgs/development/tools/cargo-flamegraph/default.nix
new file mode 100644
index 00000000000..442035d0f5f
--- /dev/null
+++ b/pkgs/development/tools/cargo-flamegraph/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, rustPlatform
+, Security
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "cargo-flamegraph";
+  version = "0.1.13";
+
+  src = fetchFromGitHub {
+    owner = "ferrous-systems";
+    repo = "flamegraph";
+    rev = version;
+    sha256 = "1s0jnj78fqz5hlgq656rr2s9ykmia51b89iffadiw6c2aw4fhv1a";
+  };
+
+  cargoSha256 = "0kmw2n4j5bisac0bv3npbwfz2z00ncd6w8ichwaz5hac5mi1a72f";
+
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [
+    Security
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3";
+    homepage = https://github.com/ferrous-systems/flamegraph;
+    license = with licenses; [ asl20 /* or */ mit ];
+    maintainers = with maintainers; [ killercup ];
+    platforms = platforms.all;
+  };
+}