Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

* Added netselect.

svn path=/nixpkgs/trunk/; revision=9225

+25
+21
pkgs/tools/networking/netselect/default.nix
··· 1 + {stdenv, fetchurl}: 2 + 3 + stdenv.mkDerivation { 4 + name = "netselect-0.3"; 5 + 6 + src = fetchurl { 7 + url = http://alumnit.ca/~apenwarr/netselect/netselect-0.3.tar.gz; 8 + sha256 = "0y69z59vylj9x9nk5jqn6ihx7dkzg09gpv2w1q1rs8fmi4jr90gy"; 9 + }; 10 + 11 + preBuild = " 12 + makeFlagsArray=(PREFIX=$out) 13 + substituteInPlace Makefile --replace '-o root' '' --replace '-g root' '' 14 + "; 15 + 16 + meta = { 17 + homepage = http://alumnit.ca/~apenwarr/netselect/; 18 + description = "An ultrafast intelligent parallelizing binary-search implementation of \"ping\""; 19 + license = "BSD"; 20 + }; 21 + }
+4
pkgs/top-level/all-packages.nix
··· 501 501 inherit fetchurl stdenv; 502 502 }; 503 503 504 + netselect = import ../tools/networking/netselect { 505 + inherit fetchurl stdenv; 506 + }; 507 + 504 508 nmap = import ../tools/security/nmap { 505 509 inherit fetchurl stdenv libpcap pkgconfig; 506 510 inherit (xlibs) libX11;