summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dropwatch/default.nix
blob: 936dbf719a873e94c1aaba1401b8a994547eb72d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, libnl, readline, libbfd, ncurses, zlib }:

stdenv.mkDerivation rec {
  pname = "dropwatch";
  version = "1.5";
  name = "${pname}-${version}";

  src = fetchFromGitHub {
    owner = "nhorman";
    repo = pname;
    rev = version;
    sha256 = "085hyyl28v0vpxfnmzchl97fjfnzj46ynhkg6y4i6h194y0d99m7";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ libbfd libnl ncurses readline zlib ];

  # To avoid running into https://sourceware.org/bugzilla/show_bug.cgi?id=14243 we need to define:
  NIX_CFLAGS_COMPILE = [
    "-DPACKAGE=${pname}"
    "-DPACKAGE_VERSION=${version}"
  ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Kernel dropped packet monitor";
    homepage = https://github.com/nhorman/dropwatch;
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.c0bw3b ];
  };
}