summary refs log tree commit diff
path: root/pkgs/applications/networking/omping/default.nix
blob: 2089408d09bab067c8c52668676b2bc7086a106c (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
36
{ lib, stdenv, fetchFromGitHub, fetchpatch }:

stdenv.mkDerivation rec {
  pname = "omping";
  version = "0.0.5";

  src = fetchFromGitHub {
    owner  = "troglobit";
    repo   = "omping";
    rev    = version;
    sha256 = "1f0vsbnhxp7bbgdnfqshryx3nhz2sqdnxdj068s0nmzsh53ckbf7";
  };

  patches = [
    # This can go in 0.0.6+
    (fetchpatch {
      url    = "https://github.com/troglobit/omping/commit/08a31ec1a6eb4e8f88c301ef679c3b6f9893f333.patch";
      sha256 = "1xafyvd46bq53w2zvjw8bdw7vjqbrcrr21cyh6d0zfcn4gif1k0f";
      name   = "fix_manpage_install.patch";
    })
  ];

  makeFlags = [
    "PREFIX=${placeholder "out"}"
  ];

  enableParallelBuilding = true;

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN";
    license = licenses.mit;
    platforms = platforms.unix;
    inherit (src.meta) homepage;
  };
}