sysdig: 0.14.0 -> 0.15.0

This commit is contained in:
Jörg Thalheim 2017-02-28 16:12:05 +01:00
parent 3fc79cb5ac
commit 479c6c1ef0
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -2,14 +2,14 @@
let
inherit (stdenv.lib) optional optionalString;
baseName = "sysdig";
version = "0.14.0";
version = "0.15.0";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
url = "https://github.com/draios/sysdig/archive/${version}.tar.gz";
sha256 = "14wy4p1q8rk3q4s8vczfhkk20z3kz8wvyxpi8qx0xc7px7z5da76";
sha256 = "08spprzgx6ksd7sjp5nk7z5szdlixh2sb0bsb9mfaq4xr12gsjw2";
};
buildInputs = [
@ -18,13 +18,6 @@ stdenv.mkDerivation {
hardeningDisable = [ "pic" ];
patches = [
];
postPatch = ''
sed '1i#include <cmath>' -i userspace/libsinsp/{cursesspectro,filterchecks}.cpp
'';
cmakeFlags = [
"-DUSE_BUNDLED_DEPS=OFF"
"-DSYSDIG_VERSION=${version}"