nixpkgs/pkgs/os-specific/linux/ply/default.nix

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

41 lines
1.3 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }:
2017-06-18 11:52:02 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "ply";
version = "2.1.1-${lib.substring 0 7 src.rev}";
nativeBuildInputs = [ autoreconfHook flex bison p7zip rsync ];
2017-06-14 22:25:46 +00:00
src = fetchFromGitHub {
owner = "iovisor";
repo = "ply";
rev = "e25c9134b856cc7ffe9f562ff95caf9487d16b59";
sha256 = "1178z7vvnjwnlxc98g2962v16878dy7bd0b2njsgn4vqgrnia7i5";
2017-06-14 22:25:46 +00:00
};
2017-06-15 19:30:12 +00:00
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
2017-06-18 11:52:02 +00:00
2017-06-15 19:30:12 +00:00
configureFlagsArray+=(--with-kerneldir=$(echo $(pwd)/linux-*))
./autogen.sh --prefix=$out
'';
2017-06-14 22:25:46 +00:00
meta = with lib; {
description = "Dynamic tracing in Linux";
mainProgram = "ply";
homepage = "https://wkz.github.io/ply/";
2021-08-18 05:42:23 +00:00
license = [ licenses.gpl2Only ];
2017-06-15 19:30:12 +00:00
maintainers = with maintainers; [ mic92 mbbx6spp ];
};
2017-06-14 22:25:46 +00:00
}