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

42 lines
1.3 KiB
Nix
Raw Normal View History

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