xhyve: add license

This commit is contained in:
Markus Kowalewski 2020-06-11 17:43:47 +02:00
parent 5d87992126
commit 22ff32d740
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
cp build/xhyve $out/bin cp build/xhyve $out/bin
''; '';
meta = { meta = with lib; {
description = "Lightweight Virtualization on macOS Based on bhyve"; description = "Lightweight Virtualization on macOS Based on bhyve";
homepage = "https://github.com/mist64/xhyve"; homepage = "https://github.com/mist64/xhyve";
maintainers = [ lib.maintainers.lnl7 ]; maintainers = [ maintainers.lnl7 ];
platforms = lib.platforms.darwin; license = licenses.bsd2;
platforms = platforms.darwin;
}; };
} }