diff --git a/pkgs/os-specific/linux/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix index c680e7d7aeae..c1141f246d0e 100644 --- a/pkgs/os-specific/linux/sysdig/default.nix +++ b/pkgs/os-specific/linux/sysdig/default.nix @@ -26,13 +26,12 @@ clang, libbpf, bpftools, - fetchurl, }: let - # Compare with https://github.com/draios/sysdig/blob/0.38.1/cmake/modules/falcosecurity-libs.cmake - libsRev = "0.17.2"; - libsHash = "sha256-BTLXtdU7GjOJReaycHvXkSd2vtybnCn0rTR7OEsvaMQ="; + # Compare with https://github.com/draios/sysdig/blob/0.40.1/cmake/modules/falcosecurity-libs.cmake + libsRev = "0.20.0"; + libsHash = "sha256-G5MMVNceNa1y7CczfoaRBektc//uUN6ijmcTMnnKMRA="; # Compare with https://github.com/falcosecurity/libs/blob/0.17.2/cmake/modules/valijson.cmake valijson = fetchFromGitHub { @@ -42,22 +41,15 @@ let hash = "sha256-wvFdjsDtKH7CpbEpQjzWtLC4RVOU9+D2rSK0Xo1cJqo="; }; - # https://github.com/draios/sysdig/blob/0.38.1/cmake/modules/driver.cmake + # https://github.com/draios/sysdig/blob/0.40.1/cmake/modules/driver.cmake driver = fetchFromGitHub { owner = "falcosecurity"; repo = "libs"; - rev = "7.2.0+driver"; - hash = "sha256-FIlnJsNgofGo4HETEEpW28wpC3U9z5AZprwFR5AgFfA="; + rev = "8.0.0+driver"; + hash = "sha256-G5MMVNceNa1y7CczfoaRBektc//uUN6ijmcTMnnKMRA="; }; - # "main.c" from master after (https://github.com/falcosecurity/libs/pull/1884) - # Remove when an upstream release includes the driver update - driverKernel610MainC = fetchurl { - url = "https://raw.githubusercontent.com/falcosecurity/libs/fa26daf65bb4117ecfe099fcad48ea75fe86d8bb/driver/main.c"; - hash = "sha256-VI/tOSXs5OcEDehSqICF3apmSnwe4QCmbkHz+DGH4uM="; - }; - - version = "0.38.1"; + version = "0.40.1"; in stdenv.mkDerivation { pname = "sysdig"; @@ -66,8 +58,8 @@ stdenv.mkDerivation { src = fetchFromGitHub { owner = "draios"; repo = "sysdig"; - rev = version; - hash = "sha256-oufRTr5TFdpF50pmem2L3bBFIfwxCR8f1xi0A328iHo="; + tag = version; + hash = "sha256-MPiNfxGePtQvh3l9RA6Vg+glB9RiR3ia1vv06MAw9do="; }; nativeBuildInputs = [ @@ -123,7 +115,6 @@ stdenv.mkDerivation { cp -r ${driver} driver-src chmod -R +w driver-src - cp ${driverKernel610MainC} driver-src/driver/main.c cmakeFlagsArray+=( "-DFALCOSECURITY_LIBS_SOURCE_DIR=$(pwd)/libs" @@ -141,6 +132,7 @@ stdenv.mkDerivation { "-DCREATE_TEST_TARGETS=OFF" "-DVALIJSON_INCLUDE=${valijson}/include" "-DUTHASH_INCLUDE=${uthash}/include" + (lib.cmakeBool "USE_BUNDLED_FALCOSECURITY_LIBS" true) ] ++ lib.optional (kernel == null) "-DBUILD_DRIVER=OFF";