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

31 lines
829 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";
2021-03-24 20:03:04 +00:00
version = "0.3.5";
2020-11-23 11:24:00 +00:00
src = fetchFromGitHub {
owner = "benfred";
repo = "py-spy";
rev = "v${version}";
2021-03-24 20:03:04 +00:00
sha256 = "sha256-O6DbY/0ZI+BeG22jd9snbE718Y2vv7fqmeDdGWTnqfY=";
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"
'';
checkInputs = [ python3 ];
cargoSha256 = "sha256-hmqrVGNu3zb109TQfhLI3wvGVnlc4CfbkrIKMfRSn7M=";
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 ];
};
}