Files
nixpkgs/pkgs/os-specific/linux/ply/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

61 lines
1.4 KiB
Nix

{
lib,
stdenv,
kernel,
fetchFromGitHub,
autoreconfHook,
bison,
flex,
p7zip,
rsync,
}:
stdenv.mkDerivation rec {
pname = "ply";
version = "2.1.1-${lib.substring 0 7 src.rev}";
nativeBuildInputs = [
autoreconfHook
flex
bison
p7zip
rsync
];
src = fetchFromGitHub {
owner = "iovisor";
repo = "ply";
rev = "e25c9134b856cc7ffe9f562ff95caf9487d16b59";
sha256 = "1178z7vvnjwnlxc98g2962v16878dy7bd0b2njsgn4vqgrnia7i5";
};
preAutoreconf = ''
# If kernel sources are a folder (i.e. fetched from git), we just copy them in
# Since they are owned by uid 0 and read-only, we need to fix permissions
if [ -d ${kernel.src} ]; then
cp -r ${kernel.src} linux-${kernel.version}
chown -R $(whoami): linux-${kernel.version}
chmod -R a+w linux-${kernel.version}
else
# ply wants to install header files to its build directory
# use 7z to handle multiple archive formats transparently
7z x ${kernel.src} -so | 7z x -aoa -si -ttar
fi
configureFlagsArray+=(--with-kerneldir=$(echo $(pwd)/linux-*))
./autogen.sh --prefix=$out
'';
meta = with lib; {
description = "Dynamic tracing in Linux";
mainProgram = "ply";
homepage = "https://wkz.github.io/ply/";
license = [ licenses.gpl2Only ];
maintainers = with maintainers; [
mic92
mbbx6spp
];
platforms = lib.platforms.linux;
};
}