mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* 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
23 lines
504 B
Nix
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;
|
|
};
|
|
}
|