about summary refs log tree commit diff
path: root/pkgs/applications/misc/cdrtools
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-04-23 04:11:19 +0300
committerNikolay Amiantov <ab@fmap.me>2016-04-23 04:11:19 +0300
commit666cba9ad96caaf79833474034eac4a18614c23e (patch)
tree2dbbfeb492a2fa7654f46513668e05fa11c5ca2b /pkgs/applications/misc/cdrtools
parent60ddddeb5b3693483e2d75ebfef52b1d60edee22 (diff)
downloadnixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar.gz
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar.bz2
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar.lz
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar.xz
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.tar.zst
nixlib-666cba9ad96caaf79833474034eac4a18614c23e.zip
cdrtools: mark as free but don't distribute in binary form
Diffstat (limited to 'pkgs/applications/misc/cdrtools')
-rw-r--r--pkgs/applications/misc/cdrtools/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix
index 2168a21f7da0..55bcfd99e17d 100644
--- a/pkgs/applications/misc/cdrtools/default.nix
+++ b/pkgs/applications/misc/cdrtools/default.nix
@@ -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 = [];
   };
 }