summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-05 01:47:16 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-05 01:47:16 +0100
commiteac5176529d4d7fa99fe685ba408d22ef8e8f6c7 (patch)
tree1e54738e3456abfeab714c0d57d6d65775f1a546 /pkgs/tools/archivers
parent19335acb0cc889b49fd25ed3ad85ec811d3f5e9e (diff)
downloadnixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar.gz
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar.bz2
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar.lz
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar.xz
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.tar.zst
nixpkgs-eac5176529d4d7fa99fe685ba408d22ef8e8f6c7.zip
Fix license on unRAR to unfree.
This license is BAD and it needs to be caught. You need to agree to the
use conditions or you have to remove the software from your machine
which makes it not redistributable.

cc @ehmry
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/unrar/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix
index a88c0b345d7..2757c2ee457 100644
--- a/pkgs/tools/archivers/unrar/default.nix
+++ b/pkgs/tools/archivers/unrar/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
 
   meta = {
     description = "Utility for RAR archives";
-    license = "freeware";
+    license = stdenv.lib.licenses.unfree;
     maintainers = [ stdenv.lib.maintainers.emery ];
     platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; # arbitrary
   };