miniupnpc: add license

This commit is contained in:
Markus Kowalewski 2018-09-10 21:31:33 +02:00
parent bb27094df1
commit a8bc08c633
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
1 changed files with 3 additions and 2 deletions

View File

@ -19,10 +19,11 @@ let
makeFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)"; makeFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
meta = { meta = with stdenv.lib; {
homepage = http://miniupnp.free.fr/; homepage = http://miniupnp.free.fr/;
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification"; description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
platforms = with stdenv.lib.platforms; linux ++ freebsd ++ darwin; platforms = with platforms; linux ++ freebsd ++ darwin;
license = licenses.bsd3;
}; };
}; };
in { in {