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

31 lines
830 B
Nix
Raw Normal View History

{ lib, stdenv, pkgsBuildBuild, rustPlatform, fetchFromGitHub, pkg-config, libunwind, python3 }:
2020-11-23 14:24:00 +03:00
rustPlatform.buildRustPackage rec {
pname = "py-spy";
2021-12-08 06:37:05 +03:00
version = "0.3.11";
2020-11-23 14:24:00 +03:00
src = fetchFromGitHub {
owner = "benfred";
repo = "py-spy";
rev = "v${version}";
2021-12-08 06:37:05 +03:00
sha256 = "sha256-4Zp4IGd4lKBC0ye2/7Tfpz8vJzm0VnkKqx/2k3mCj3A=";
2020-11-23 14:24:00 +03: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 14:24:00 +03:00
export RUSTFLAGS="-Clinker=$CC"
'';
checkInputs = [ python3 ];
2021-12-08 06:37:05 +03:00
cargoSha256 = "sha256-LEtmzCoT8esBYh9PkCGpzUU7miaWd3Ao0z/LzxhP39A=";
2020-11-23 14:24:00 +03:00
meta = with lib; {
2020-11-23 14:24:00 +03:00
description = "Sampling profiler for Python programs";
license = licenses.mit;
maintainers = [ maintainers.lnl7 ];
};
}