nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 637 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchCrate, 5 nix-update-script, 6}: 7 8rustPlatform.buildRustPackage rec { 9 pname = "functiontrace-server"; 10 version = "0.8.6"; 11 12 src = fetchCrate { 13 inherit pname version; 14 hash = "sha256-f/DpT5IYhUA/+w+QK3Itk4bBaYRFhGOWQbN51YYrmxA="; 15 }; 16 17 cargoHash = "sha256-rDCIzJUFA+2iEpITg3MuKFfgiyQ6GtMvIigiHkX70M8="; 18 19 passthru.updateScript = nix-update-script { }; 20 21 meta = { 22 description = "Server for FunctionTrace, a graphical Python profiler"; 23 homepage = "https://functiontrace.com"; 24 license = with lib.licenses; [ prosperity30 ]; 25 maintainers = with lib.maintainers; [ tehmatt ]; 26 }; 27}