lol
at 16.09-beta 22 lines 608 B view raw
1{stdenv, fetchurl}: 2 3stdenv.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 platforms = stdenv.lib.platforms.linux; 21 }; 22}