mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Allow no-kernel-module build of SysDig
This commit is contained in:
parent
89238a251c
commit
f8a62ff002
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DUSE_BUNDLED_LUAJIT=OFF"
|
"-DUSE_BUNDLED_LUAJIT=OFF"
|
||||||
"-DUSE_BUNDLED_ZLIB=OFF"
|
"-DUSE_BUNDLED_ZLIB=OFF"
|
||||||
];
|
] ++ optional (kernel == null) "-DBUILD_DRIVER=OFF";
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
export INSTALL_MOD_PATH="$out"
|
export INSTALL_MOD_PATH="$out"
|
||||||
'' + optionalString (kernel != null) ''
|
'' + optionalString (kernel != null) ''
|
||||||
|
|
Loading…
Reference in a new issue