weighttp: add license

+6 -3
+6 -3
pkgs/tools/networking/weighttp/default.nix
··· 1 { lib, stdenv, fetchgit, python, libev, wafHook }: 2 stdenv.mkDerivation rec { 3 pname = "weighttp"; 4 version = "0.4"; ··· 10 }; 11 12 nativeBuildInputs = [ wafHook ]; 13 buildInputs = [ python libev ]; 14 15 - meta = { 16 - platforms = lib.platforms.unix; 17 homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki"; 18 - description = "A lightweight and simple webserver benchmarking tool"; 19 }; 20 }
··· 1 { lib, stdenv, fetchgit, python, libev, wafHook }: 2 + 3 stdenv.mkDerivation rec { 4 pname = "weighttp"; 5 version = "0.4"; ··· 11 }; 12 13 nativeBuildInputs = [ wafHook ]; 14 + 15 buildInputs = [ python libev ]; 16 17 + meta = with lib; { 18 + description = "Lightweight and simple webserver benchmarking tool"; 19 homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki"; 20 + platforms = platforms.unix; 21 + license = licenses.mit; 22 }; 23 }