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

77 lines
2.3 KiB
Nix
Raw Normal View History

2017-01-10 11:56:33 +01:00
{stdenv, fetchurl, fetchFromGitHub, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, fetchpatch}:
let
inherit (stdenv.lib) optional optionalString;
baseName = "sysdig";
2017-02-02 11:05:21 +01:00
version = "0.14.0";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
url = "https://github.com/draios/sysdig/archive/${version}.tar.gz";
2017-02-02 11:05:21 +01:00
sha256 = "14wy4p1q8rk3q4s8vczfhkk20z3kz8wvyxpi8qx0xc7px7z5da76";
};
buildInputs = [
2016-10-26 19:28:09 +02:00
cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl jq gcc
];
hardeningDisable = [ "pic" ];
2017-01-10 11:56:33 +01:00
patches = [
];
postPatch = ''
sed '1i#include <cmath>' -i userspace/libsinsp/{cursesspectro,filterchecks}.cpp
'';
cmakeFlags = [
2015-12-12 21:25:17 +01:00
"-DUSE_BUNDLED_DEPS=OFF"
"-DSYSDIG_VERSION=${version}"
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"
'';
2016-10-26 19:28:09 +02:00
libPath = stdenv.lib.makeLibraryPath [
zlib
luajit
ncurses
jsoncpp
curl
jq
openssl
libb64
gcc
stdenv.cc.cc
];
2016-10-26 19:28:09 +02:00
postInstall = ''
patchelf --set-rpath "$libPath" "$out/bin/sysdig"
patchelf --set-rpath "$libPath" "$out/bin/csysdig"
'' + optionalString (kernel != null) ''
2014-05-06 22:54:41 +02:00
make install_driver
kernel_dev=${kernel.dev}
kernel_dev=''${kernel_dev#/nix/store/}
kernel_dev=''${kernel_dev%%-linux*dev*}
if test -f "$out/lib/modules/${kernel.modDirVersion}/extra/sysdig-probe.ko"; then
sed -i "s#$kernel_dev#................................#g" $out/lib/modules/${kernel.modDirVersion}/extra/sysdig-probe.ko
else
xz -d $out/lib/modules/${kernel.modDirVersion}/extra/sysdig-probe.ko.xz
sed -i "s#$kernel_dev#................................#g" $out/lib/modules/${kernel.modDirVersion}/extra/sysdig-probe.ko
xz $out/lib/modules/${kernel.modDirVersion}/extra/sysdig-probe.ko
fi
'';
meta = with stdenv.lib; {
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";
};
}