summary refs log tree commit diff
path: root/pkgs/development/tools/profiling
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2021-07-10 20:15:53 +0200
committerGitHub <noreply@github.com>2021-07-10 20:15:53 +0200
commitb7e408dd17f6868ff5d3f50d4b44eaee067412cc (patch)
treed6e3789177ec4a8b49892302f5c24e0cb72a25dc /pkgs/development/tools/profiling
parentc786eaf612327455b1eaed7c32563c3d07c3d6be (diff)
parent26f64b251cbac73569e2f5cf83b27f1b0f1fe011 (diff)
downloadnixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar.gz
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar.bz2
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar.lz
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar.xz
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.tar.zst
nixpkgs-b7e408dd17f6868ff5d3f50d4b44eaee067412cc.zip
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/development/tools/profiling')
-rw-r--r--pkgs/development/tools/profiling/malt/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/tools/profiling/malt/default.nix b/pkgs/development/tools/profiling/malt/default.nix
new file mode 100644
index 00000000000..fa3810cab67
--- /dev/null
+++ b/pkgs/development/tools/profiling/malt/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, lib
+, fetchFromGitHub
+, cmake, nodejs, libelf, libunwind
+}:
+
+stdenv.mkDerivation rec {
+  pname = "malt";
+  version = "1.2.1";
+
+  src = fetchFromGitHub {
+    owner = "memtt";
+    repo = "malt";
+    rev = "v${version}";
+    sha256 = "1yh9gmf7cggf3mx15cwmm99dha34aibkzhnpd0ckl0fkc6w17xqg";
+  };
+
+  postPatch = ''
+    sed -i s,@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@,@CMAKE_INSTALL_LIBDIR@, \
+      src/integration/malt.sh.in
+    sed -i -e 's,^NODE=""$,NODE=${nodejs}/bin/node,' -e s,^detectNodeJS$,, \
+      src/integration/malt-{webview,passwd}.sh.in
+  '';
+
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ libelf libunwind ];
+
+  meta = with lib; {
+    description = "Memory tool to find where you allocate your memory";
+    homepage = "https://github.com/memtt/malt";
+    license = licenses.cecill-c;
+    maintainers = with maintainers; [ viric ];
+    platforms = platforms.linux;
+  };
+}