3 , cmake, nodejs, libelf, libunwind
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "sha256-eeiThHorLxL2qHIXd9vzc2jRYd7BN3/OHCqM9BmXi0U=";
18 sed -i s,@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@,@CMAKE_INSTALL_LIBDIR@, \
19 src/integration/malt.sh.in
20 sed -i -e 's,^NODE=""$,NODE=${nodejs}/bin/node,' -e s,^detectNodeJS$,, \
21 src/integration/malt-{webview,passwd}.sh.in
24 nativeBuildInputs = [ cmake ];
25 buildInputs = [ libelf libunwind ];
28 description = "Memory tool to find where you allocate your memory";
29 homepage = "https://github.com/memtt/malt";
30 license = licenses.cecill-c;
32 platforms = platforms.linux;