mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
functiontrace-server: init at 0.5.2
Added initial version of the server-piece of https://functiontrace.com. This is most useful with a functiontrace client, which depends on this and will therefore be added afterwards.
This commit is contained in:
parent
4a6f9a7bd6
commit
7f14501e42
23
pkgs/development/tools/functiontrace-server/default.nix
Normal file
23
pkgs/development/tools/functiontrace-server/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -542,6 +542,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user