foo-yc20: fix licenses

This commit is contained in:
Markus Kowalewski 2020-06-26 10:43:14 +02:00
parent cd8e099ffe
commit 61800c4281
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
1 changed files with 4 additions and 4 deletions

View File

@ -18,12 +18,12 @@ stdenv.mkDerivation {
# remove lv2 until https://github.com/sampov2/foo-yc20/issues/6 is resolved # remove lv2 until https://github.com/sampov2/foo-yc20/issues/6 is resolved
postInstallFixup = "rm -rf $out/lib/lv2"; postInstallFixup = "rm -rf $out/lib/lv2";
meta = { meta = with stdenv.lib; {
broken = true; # see: https://github.com/sampov2/foo-yc20/issues/7 broken = true; # see: https://github.com/sampov2/foo-yc20/issues/7
description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20"; description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20";
homepage = "https://github.com/sampov2/foo-yc20"; homepage = "https://github.com/sampov2/foo-yc20";
license = "BSD"; license = with licenses; [ bsd3 lgpl21 mpl11 ] ;
maintainers = [ stdenv.lib.maintainers.magnetophon ]; maintainers = [ maintainers.magnetophon ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }