about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-11-19 19:58:13 -0600
committerThomas Tuegel <ttuegel@gmail.com>2014-11-20 05:14:02 -0600
commit4e117488861bfc4d49e3fc479488c91e0016e59f (patch)
tree2ac3e67ff38a2df717fd1005dbf7eb20d9f4cac0 /pkgs/misc
parentac696769af2acbf638ce048c95a68ef24be251f3 (diff)
downloadnixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar.gz
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar.bz2
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar.lz
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar.xz
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.tar.zst
nixlib-4e117488861bfc4d49e3fc479488c91e0016e59f.zip
hplip: update license attribute
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/drivers/hplip/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index 678f74745b35..9ac7aec2a873 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -118,7 +118,9 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Print, scan and fax HP drivers for Linux";
     homepage = http://hplipopensource.com/;
-    license = if withPlugin then licenses.unfree else "free"; # MIT/BSD/GPL
+    license = if withPlugin
+      then licenses.unfree
+      else with stdenv.licenses; [ mit bsd2 gpl2Plus ];
     platforms = platforms.linux;
     maintainers = with maintainers; [ ttuegel jgeerds ];
   };