libmilter: add license

This commit is contained in:
Markus Kowalewski 2018-10-18 21:00:17 +02:00
parent b1800e3c18
commit f5b9a9455f
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB
2 changed files with 6 additions and 0 deletions

View file

@ -585,6 +585,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
fullName = "Ruby License";
};
sendmail = spdx {
spdxId = "Sendmail";
fullName = "Sendmail License";
};
sgi-b-20 = spdx {
spdxId = "SGI-B-2.0";
fullName = "SGI Free Software License B v2.0";

View file

@ -37,5 +37,6 @@ stdenv.mkDerivation rec {
description = "Sendmail Milter mail filtering API library";
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = licenses.sendmail;
};
}