nixpkgs/pkgs/tools/networking/tcptraceroute/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
754 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, libpcap
, libnet
2017-05-20 15:18:26 +00:00
}:
stdenv.mkDerivation rec {
pname = "tcptraceroute";
version = "1.5beta7";
2017-05-20 15:18:26 +00:00
src = fetchFromGitHub {
owner = "mct";
repo = "tcptraceroute";
rev = "${pname}-${version}";
hash = "sha256-KU4MLWtOFzzNr+I99fRbhBokhS1JUNL+OgVltkOGav4=";
};
2017-05-20 15:18:26 +00:00
# for reasons unknown --disable-static configure flag doesn't disable static
# linking.. we instead override CFLAGS with -static omitted
preBuild = ''
makeFlagsArray=(CFLAGS=" -g -O2 -Wall")
'';
2017-05-20 15:18:26 +00:00
buildInputs = [ libpcap libnet ];
meta = {
description = "A traceroute implementation using TCP packets";
homepage = "https://github.com/mct/tcptraceroute";
license = lib.licenses.gpl2;
maintainers = [ ];
};
2017-05-20 15:18:26 +00:00
}