summary refs log tree commit diff
path: root/pkgs/applications/misc/mupdf
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2017-10-29 17:19:18 +0100
committerGitHub <noreply@github.com>2017-10-29 17:19:18 +0100
commit3afcba3e0a92522e42d3243df9235c30de4889e6 (patch)
tree30e7c8852cdf682974c40c7c580c8d943967fdf6 /pkgs/applications/misc/mupdf
parent91d3da04ad1999953e7e89baf73aedd3730d4b8e (diff)
downloadnixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar.gz
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar.bz2
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar.lz
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar.xz
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.tar.zst
nixlib-3afcba3e0a92522e42d3243df9235c30de4889e6.zip
mupdf: correct license meta information
The website of MuPDF says that MuPDF is licensed under the terms of the GNU 
Affero General Public License. However, I didn't see which version of that
license they mean.

A clear statement that MuPDF is licensed under the terms of AGPL >= 3 is 
included in the README file of their Git repository:

    git://git.ghostscript.com/mupdf.git
Diffstat (limited to 'pkgs/applications/misc/mupdf')
-rw-r--r--pkgs/applications/misc/mupdf/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/mupdf/default.nix b/pkgs/applications/misc/mupdf/default.nix
index a111e76df0c2..b50d99466f89 100644
--- a/pkgs/applications/misc/mupdf/default.nix
+++ b/pkgs/applications/misc/mupdf/default.nix
@@ -103,7 +103,7 @@ stdenv.mkDerivation rec {
     homepage = http://mupdf.com;
     repositories.git = git://git.ghostscript.com/mupdf.git;
     description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C";
-    license = licenses.gpl3Plus;
+    license = licenses.agpl3Plus;
     maintainers = with maintainers; [ viric vrthra fpletz ];
     platforms = platforms.linux;
   };