sysdig: 0.15.0 -> 0.16.0

This commit is contained in:
Jörg Thalheim 2017-05-08 18:59:39 +01:00
parent 7b5356ed5e
commit 2e2a5af81f
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,17 +1,15 @@
{stdenv, fetchurl, fetchFromGitHub, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, fetchpatch}: {stdenv, fetchurl, fetchFromGitHub, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, fetchpatch}:
let with stdenv.lib;
inherit (stdenv.lib) optional optionalString;
baseName = "sysdig";
version = "0.15.0";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${baseName}-${version}"; name = "sysdig-${version}";
version = "0.16.0";
src = fetchurl { src = fetchFromGitHub {
name = "${name}.tar.gz"; owner = "draios";
url = "https://github.com/draios/sysdig/archive/${version}.tar.gz"; repo = "sysdig";
sha256 = "08spprzgx6ksd7sjp5nk7z5szdlixh2sb0bsb9mfaq4xr12gsjw2"; rev = version;
sha256 = "1h3f9nkc5fkvks6va0maq377m9qxnsf4q3f2dc14rdzfvnzidy06";
}; };
buildInputs = [ buildInputs = [
@ -37,7 +35,7 @@ stdenv.mkDerivation rec {
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
''; '';
libPath = stdenv.lib.makeLibraryPath [ libPath = makeLibraryPath [
zlib zlib
luajit luajit
ncurses ncurses
@ -67,7 +65,7 @@ stdenv.mkDerivation rec {
fi fi
''; '';
meta = with stdenv.lib; { meta = {
description = "A tracepoint-based system tracing tool for Linux (with clients for other OSes)"; description = "A tracepoint-based system tracing tool for Linux (with clients for other OSes)";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [maintainers.raskin]; maintainers = [maintainers.raskin];