cdrtools: mark as free but don't distribute in binary form

This commit is contained in:
Nikolay Amiantov 2016-04-23 04:11:19 +03:00
parent 60ddddeb5b
commit 666cba9ad9

View file

@ -26,10 +26,11 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/cdrtools/;
description = "Highly portable CD/DVD/BluRay command line recording software";
# Licensing issues: This package contains code licensed under CDDL, GPL2
# and LGPL2. There is debate regarding the legality of this licensing.
# Marked as unfree to avoid any possible legal issues.
license = licenses.unfree;
license = with licenses; [ gpl2 lgpl2 cddl ];
platforms = platforms.linux;
# Licensing issues: This package contains code licensed under CDDL, GPL2
# and LGPL2. There is a debate regarding the legality of distributing this
# package in binary form.
hydraPlatforms = [];
};
}