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

44 lines
1.3 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-08-11 11:04:35 +02:00
version="0.1.87";
name="${baseName}-${version}";
2014-05-06 22:54:41 +02:00
url="https://github.com/draios/sysdig/archive/${version}.tar.gz";
2014-08-11 11:04:35 +02:00
sha256="0xfildaj8kzbngpza47zqm363i6q87m97a18qlmdisrxmz11s32b";
};
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;
2014-08-03 18:53:00 +02:00
downloadPage = "https://github.com/draios/sysdig/releases";
};
}