* Added netselect.
svn path=/nixpkgs/trunk/; revision=9225
This commit is contained in:
parent
c383f04b8f
commit
d8046322a9
21
pkgs/tools/networking/netselect/default.nix
Normal file
21
pkgs/tools/networking/netselect/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "netselect-0.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://alumnit.ca/~apenwarr/netselect/netselect-0.3.tar.gz;
|
||||||
|
sha256 = "0y69z59vylj9x9nk5jqn6ihx7dkzg09gpv2w1q1rs8fmi4jr90gy";
|
||||||
|
};
|
||||||
|
|
||||||
|
preBuild = "
|
||||||
|
makeFlagsArray=(PREFIX=$out)
|
||||||
|
substituteInPlace Makefile --replace '-o root' '' --replace '-g root' ''
|
||||||
|
";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://alumnit.ca/~apenwarr/netselect/;
|
||||||
|
description = "An ultrafast intelligent parallelizing binary-search implementation of \"ping\"";
|
||||||
|
license = "BSD";
|
||||||
|
};
|
||||||
|
}
|
@ -501,6 +501,10 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
netselect = import ../tools/networking/netselect {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
nmap = import ../tools/security/nmap {
|
nmap = import ../tools/security/nmap {
|
||||||
inherit fetchurl stdenv libpcap pkgconfig;
|
inherit fetchurl stdenv libpcap pkgconfig;
|
||||||
inherit (xlibs) libX11;
|
inherit (xlibs) libX11;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user