nixpkgs/pkgs/development/tools/py-spy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
836 B
Nix
Raw Normal View History

{ lib, stdenv, pkgsBuildBuild, rustPlatform, fetchFromGitHub, pkg-config, libunwind, python3 }:
2020-11-23 11:24:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "py-spy";
2022-07-29 18:15:08 +00:00
version = "0.3.12";
2020-11-23 11:24:00 +00:00
src = fetchFromGitHub {
owner = "benfred";
repo = "py-spy";
rev = "v${version}";
2022-07-29 18:15:08 +00:00
sha256 = "sha256-k58PPJAF9MsKRlscFSqdtTY5/rriaF0mXjgkADT+F4s=";
2020-11-23 11:24:00 +00:00
};
NIX_CFLAGS_COMPILE = "-L${libunwind}/lib";
# error: linker `arm-linux-gnueabihf-gcc` not found
preConfigure = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
2020-11-23 11:24:00 +00:00
export RUSTFLAGS="-Clinker=$CC"
'';
nativeCheckInputs = [ python3 ];
2020-11-23 11:24:00 +00:00
2022-07-29 18:15:08 +00:00
cargoSha256 = "sha256-DC+EfJ671/bvFoHHjpJlFCO/phdndNcldnP3DsIKqAg=";
2020-11-23 11:24:00 +00:00
meta = with lib; {
2020-11-23 11:24:00 +00:00
description = "Sampling profiler for Python programs";
license = licenses.mit;
maintainers = [ maintainers.lnl7 ];
};
}