My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/linux/sysdig/default.nix

43 lines
1.1 KiB

{stdenv, fetchurl, cmake, luajit, kernel, zlib}:
let
inherit (stdenv.lib) optional optionalString;
s = rec {
baseName="sysdig";
version="0.1.82";
name="${baseName}-${version}";
url="https://github.com/draios/sysdig/archive/${version}.tar.gz";
sha256="0yjxsdjbkp5dihg5xhkyl3lg64dl40a0b5cvcai8gz74w2955mnk";
};
buildInputs = [
cmake zlib luajit
] ++ optional (kernel != null) kernel;
in
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
cmakeFlags = [
"-DUSE_BUNDLED_LUAJIT=OFF"
"-DUSE_BUNDLED_ZLIB=OFF"
];
preConfigure = ''
export INSTALL_MOD_PATH="$out"
'' + optionalString (kernel != null) ''
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
'';
postInstall = optionalString (kernel != null) ''
make install_driver
'';
meta = with stdenv.lib; {
inherit (s) version;
description = ''A tracepoint-based system tracing tool for Linux (with clients for other OSes)'';
license = licenses.gpl2;
maintainers = [maintainers.raskin];
platforms = platforms.linux ++ platforms.darwin;
};
}