Merge pull request #223682 from tehmatt/tehmatt-functiontrace

functiontrace-server: init at 0.5.2
This commit is contained in:
Nick Cao 2023-04-01 20:46:53 +08:00 committed by GitHub
commit 7cf3bfe11c
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, fetchCrate, stdenv, darwin }:
rustPlatform.buildRustPackage rec {
pname = "functiontrace-server";
version = "0.5.2";
src = fetchCrate {
inherit pname version;
hash = "sha256-p6ypMfg99ohQCyPB2O0wXbGmPvD2K9V3EnFDd5dC6js=";
};
cargoHash = "sha256-3tLjW7yiS1dNsV81KUZbfN2pvYT9kqiC62nWFid2NH8=";
buildInputs = lib.optionals stdenv.isDarwin
[ darwin.apple_sdk.frameworks.CoreFoundation ];
meta = with lib; {
description = "Server for FunctionTrace, a graphical Python profiler";
homepage = "https://functiontrace.com";
license = with licenses; [ prosperity30 ];
maintainers = with maintainers; [ tehmatt ];
};
}

View file

@ -546,6 +546,8 @@ with pkgs;
frugal = callPackage ../development/tools/frugal { };
functiontrace-server = callPackage ../development/tools/functiontrace-server { };
glade = callPackage ../development/tools/glade { };
goda = callPackage ../development/tools/goda { };