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

43 lines
1.2 KiB
Nix
Raw Normal View History

2014-05-06 22:54:41 +02:00
{stdenv, fetchurl, cmake, luajit, kernel, zlib}:
let
inherit (stdenv.lib) optional optionalString;
2014-05-06 22:54:41 +02:00
s = rec {
baseName="sysdig";
2014-05-09 08:52:14 +02:00
version="0.1.82";
name="${baseName}-${version}";
2014-05-06 22:54:41 +02:00
url="https://github.com/draios/sysdig/archive/${version}.tar.gz";
2014-05-09 08:52:14 +02:00
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"
2014-05-06 22:54:41 +02:00
"-DUSE_BUNDLED_ZLIB=OFF"
2014-05-12 22:08:45 +02:00
] ++ optional (kernel == null) "-DBUILD_DRIVER=OFF";
2014-05-06 22:54:41 +02:00
preConfigure = ''
export INSTALL_MOD_PATH="$out"
'' + optionalString (kernel != null) ''
2014-05-06 22:54:41 +02:00
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
'';
postInstall = optionalString (kernel != null) ''
2014-05-06 22:54:41 +02:00
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;
};
}