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 14:24:00 +03:00
rustPlatform.buildRustPackage rec {
pname = "py-spy";
2021-09-15 00:23:40 +03:00
version = "0.3.9";
2020-11-23 14:24:00 +03:00
src = fetchFromGitHub {
owner = "benfred";
repo = "py-spy";
rev = "v${version}";
2021-09-15 00:23:40 +03:00
sha256 = "sha256-jGHTt3MMSNBVi9W3JRWxKrao1OXrV8mB1pXoiZcQ7SU=";
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-09-15 00:23:40 +03:00
cargoSha256 = "sha256-UW8fqauuE2e6NPsJP2YtjU8bwi60UWJvGvZ7dglmPA0=";
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 ];
};
}