Add license

This is important because this contains some code copied from nix (as an
interim expediency until that functionality can be exported via nix's
API).  The license specified here must be compatible with this borrowing.
Select the same license that nix is released under: lgpl2Plus.
This commit is contained in:
Chuck 2019-09-06 10:29:32 -07:00 committed by Linus Heckemann
parent f3eedb6020
commit 2336982957

View file

@ -4,4 +4,7 @@ stdenv.mkDerivation rec {
src = ./.;
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ boost nix ];
meta {
license = stdenv.lib.licenses.lgpl2Plus;
}
}