tradcpp: add license

This commit is contained in:
Markus Kowalewski 2018-11-08 20:56:45 +01:00
parent 3455f378c9
commit e707443caa
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
1 changed files with 3 additions and 2 deletions

View File

@ -13,9 +13,10 @@ stdenv.mkDerivation {
preConfigure = "autoconf"; preConfigure = "autoconf";
patches = [ ./tradcpp-configure.patch ]; patches = [ ./tradcpp-configure.patch ];
meta = { meta = with stdenv.lib; {
description = "A traditional (K&R-style) C macro preprocessor"; description = "A traditional (K&R-style) C macro preprocessor";
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
license = licenses.bsd2;
}; };
} }