2016-01-18 00:04:40 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libpcap, libjpeg , libungif, libpng
|
2019-05-22 13:03:39 +02:00
|
|
|
, giflib, glib, gtk2, cairo, pango, gdk-pixbuf, atk
|
2016-01-18 00:04:40 +01:00
|
|
|
, pkgconfig, autoreconfHook }:
|
2015-07-07 11:52:23 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "driftnet";
|
2017-03-02 02:55:11 +01:00
|
|
|
version = "1.1.5";
|
2015-07-07 11:52:23 +02:00
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-01-18 00:04:40 +01:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
libpcap libjpeg libungif libpng giflib
|
2019-05-22 13:03:39 +02:00
|
|
|
glib gtk2 glib cairo pango gdk-pixbuf atk autoreconfHook
|
2016-01-18 00:04:40 +01:00
|
|
|
];
|
2015-07-07 11:52:23 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "deiv";
|
|
|
|
repo = "driftnet";
|
2017-03-02 02:55:11 +01:00
|
|
|
rev = "0ae4a91";
|
|
|
|
sha256 = "1sagpx0mw68ggvqd9c3crjhghqmj7391mf2cb6cjw1cpd2hcddsj";
|
2015-07-07 11:52:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2016-02-27 18:24:00 +01:00
|
|
|
description = "Driftnet watches network traffic, and picks out and displays JPEG and GIF images for display";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/deiv/driftnet";
|
2015-07-07 11:52:23 +02:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2018-09-10 21:22:10 +02:00
|
|
|
license = licenses.gpl2;
|
2015-07-07 11:52:23 +02:00
|
|
|
};
|
|
|
|
}
|