summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicky Elrod <ricky@elrod.me>2014-05-06 04:04:43 -0400
committerRicky Elrod <ricky@elrod.me>2014-05-06 04:04:43 -0400
commit139c6fb180f4f95151003350e11ac9a3554541c9 (patch)
tree81845325d4d80ef287eb02e67698311669ab1c62
parentdf0014488af9d0e6559143c2180fc20c6e865079 (diff)
downloadnixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar.gz
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar.bz2
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar.lz
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar.xz
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.tar.zst
nixpkgs-139c6fb180f4f95151003350e11ac9a3554541c9.zip
Add OFL as an actual license
-rw-r--r--lib/licenses.nix6
-rw-r--r--pkgs/data/fonts/poly/default.nix2
2 files changed, 7 insertions, 1 deletions
diff --git a/lib/licenses.nix b/lib/licenses.nix
index 68f91f80685..e49528f2a2e 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -208,6 +208,12 @@
     url = https://www.mozilla.org/MPL/2.0;
   };
 
+  ofl = {
+    shortName = "OFL";
+    fullName = "SIL Open Font License";
+    url = "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web";
+  };
+
   openssl = {
     shortName = "openssl";
     fullName = "OpenSSL license";
diff --git a/pkgs/data/fonts/poly/default.nix b/pkgs/data/fonts/poly/default.nix
index fbb1db8a28e..63006fdd4f8 100644
--- a/pkgs/data/fonts/poly/default.nix
+++ b/pkgs/data/fonts/poly/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
     and languages that use the Latin script and its variants.
     '';
     homepage = http://www.fontsquirrel.com/fonts/poly;
-    license = [ "OFL" ];
+    license = stdenv.lib.licenses.ofl;
     maintainers = with stdenv.lib.maintainers; [ relrod ];
     platforms = with stdenv.lib.platforms; linux;
   };