From b13ab27360d022262ac0e3d04f48d5b5e672a15b Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Thu, 1 Nov 2018 20:58:40 +0100 Subject: [PATCH] jasper: add license --- lib/licenses.nix | 4 ++++ pkgs/development/libraries/jasper/default.nix | 1 + 2 files changed, 5 insertions(+) diff --git a/lib/licenses.nix b/lib/licenses.nix index 940baf53b7c3..092cbbbdb25a 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -400,6 +400,10 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { free = false; }; + jasper = spdx { + spdxId = "JasPer-2.0"; + fullName = "JasPer License"; + }; lgpl2 = spdx { spdxId = "LGPL-2.0"; diff --git a/pkgs/development/libraries/jasper/default.nix b/pkgs/development/libraries/jasper/default.nix index de4848c7dda4..eb9282274328 100644 --- a/pkgs/development/libraries/jasper/default.nix +++ b/pkgs/development/libraries/jasper/default.nix @@ -40,6 +40,7 @@ stdenv.mkDerivation rec { homepage = https://www.ece.uvic.ca/~frodo/jasper/; description = "JPEG2000 Library"; platforms = platforms.unix; + license = licenses.jasper; maintainers = with maintainers; [ pSub ]; }; }