weighttp: add license

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