Merge pull request #111903 from fabaff/license-weighttp

weighttp: add license
This commit is contained in:
Sandro 2021-02-04 15:44:23 +01:00 committed by GitHub
commit fe83697829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib, stdenv, fetchgit, python, libev, wafHook }: { lib, stdenv, fetchgit, python, libev, wafHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "weighttp"; pname = "weighttp";
version = "0.4"; version = "0.4";
@ -10,11 +11,13 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ wafHook ]; nativeBuildInputs = [ wafHook ];
buildInputs = [ python libev ]; buildInputs = [ python libev ];
meta = { meta = with lib; {
platforms = lib.platforms.unix; description = "Lightweight and simple webserver benchmarking tool";
homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki"; homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki";
description = "A lightweight and simple webserver benchmarking tool"; platforms = platforms.unix;
license = licenses.mit;
}; };
} }