Skip to content

Commit 2e2a5af

Browse files
committedMay 9, 2017
sysdig: 0.15.0 -> 0.16.0
1 parent 7b5356e commit 2e2a5af

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed
 

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

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{stdenv, fetchurl, fetchFromGitHub, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, fetchpatch}:
22

3-
let
4-
inherit (stdenv.lib) optional optionalString;
5-
baseName = "sysdig";
6-
version = "0.15.0";
7-
in
3+
with stdenv.lib;
84
stdenv.mkDerivation rec {
9-
name = "${baseName}-${version}";
5+
name = "sysdig-${version}";
6+
version = "0.16.0";
107

11-
src = fetchurl {
12-
name = "${name}.tar.gz";
13-
url = "https://github.com/draios/sysdig/archive/${version}.tar.gz";
14-
sha256 = "08spprzgx6ksd7sjp5nk7z5szdlixh2sb0bsb9mfaq4xr12gsjw2";
8+
src = fetchFromGitHub {
9+
owner = "draios";
10+
repo = "sysdig";
11+
rev = version;
12+
sha256 = "1h3f9nkc5fkvks6va0maq377m9qxnsf4q3f2dc14rdzfvnzidy06";
1513
};
1614

1715
buildInputs = [
@@ -37,7 +35,7 @@ stdenv.mkDerivation rec {
3735
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
3836
'';
3937

40-
libPath = stdenv.lib.makeLibraryPath [
38+
libPath = makeLibraryPath [
4139
zlib
4240
luajit
4341
ncurses
@@ -67,7 +65,7 @@ stdenv.mkDerivation rec {
6765
fi
6866
'';
6967

70-
meta = with stdenv.lib; {
68+
meta = {
7169
description = "A tracepoint-based system tracing tool for Linux (with clients for other OSes)";
7270
license = licenses.gpl2;
7371
maintainers = [maintainers.raskin];

0 commit comments

Comments
 (0)
Please sign in to comment.