Merge pull request #184126 from figsoda/lurk

lurk: init at 0.2.9
This commit is contained in:
figsoda 2022-08-04 09:12:59 +08:00 committed by GitHub
commit 23e0738cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "lurk";
version = "0.2.9";
src = fetchFromGitHub {
owner = "jakwai01";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Vvz1CWNpMbVpICL42VQHLM7AWSONGSXP5kfZ8rZlw8M=";
};
cargoSha256 = "sha256-AoFkgm13vj/18GOuSIgzs+xk82lSQ6zGpq4QVWcClv8=";
meta = with lib; {
description = "A simple and pretty alternative to strace";
homepage = "https://github.com/jakwai01/lurk";
license = licenses.agpl3Only;
maintainers = with maintainers; [ figsoda ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}

View File

@ -16289,6 +16289,8 @@ with pkgs;
stdenv = overrideCC stdenv llvmPackages_9.clang;
});
lurk = callPackage ../development/tools/lurk { };
malt = callPackage ../development/tools/profiling/malt {};
massif-visualizer = libsForQt5.callPackage ../development/tools/analysis/massif-visualizer { };