lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 23 lines 525 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "wbox"; 5 version = "5"; 6 7 installPhase = '' 8 install -vD wbox "$out/bin/wbox" 9 ''; 10 11 src = fetchurl { 12 url = "http://www.hping.org/wbox/${pname}-${version}.tar.gz"; 13 sha256 = "06daxwbysppvbh1mwprw8fgsp6mbd3kqj7a978w7ivn8hdgdi28m"; 14 }; 15 16 meta = { 17 description = "A simple HTTP benchmarking tool"; 18 homepage = "http://www.hping.org/wbox/"; 19 license = lib.licenses.bsd3; 20 platforms = lib.platforms.unix; 21 mainProgram = "wbox"; 22 }; 23}