nixpkgs/pkgs/tools/networking/wbox/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

23 lines
504 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "wbox-${version}";
version = "5";
installPhase = ''
install -vD wbox "$out/bin/wbox"
'';
src = fetchurl {
url = "http://www.hping.org/wbox/${name}.tar.gz";
sha256 = "06daxwbysppvbh1mwprw8fgsp6mbd3kqj7a978w7ivn8hdgdi28m";
};
meta = {
description = "A simple HTTP benchmarking tool";
homepage = http://www.hping.org/wbox/;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
};
}