1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/tools/networking/netselect/default.nix

26 lines
670 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "netselect-0.3";
2018-09-04 21:28:32 +01:00
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" "" \
--replace "4755" "0755"
'';
2018-09-04 21:28:32 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/apenwarr/netselect;
description = "An ultrafast intelligent parallelizing binary-search implementation of \"ping\"";
2018-09-04 21:28:32 +01:00
license = licenses.bsd3;
platforms = platforms.linux;
};
}