about summary refs log tree commit diff
path: root/pkgs/data/fonts/poly
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-15 14:29:18 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-15 14:29:18 +0700
commit4eb185bd6af35b31c9bc8ab9fca170f9440c696a (patch)
treeb1d77c4b82321fe3286225b036af65bf9c81961f /pkgs/data/fonts/poly
parent0e49ba1b645fcf7b1840b688e130f988cad6d7a3 (diff)
pkgs/data: stdenv.lib -> lib
Diffstat (limited to 'pkgs/data/fonts/poly')
-rw-r--r--pkgs/data/fonts/poly/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/data/fonts/poly/default.nix b/pkgs/data/fonts/poly/default.nix
index 05b411a5ba301..50dfb50203543 100644
--- a/pkgs/data/fonts/poly/default.nix
+++ b/pkgs/data/fonts/poly/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, unzip }:
+{ lib, stdenv, fetchurl, unzip }:
 
 stdenv.mkDerivation rec {
   name = "poly";
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
       and languages that use the Latin script and its variants.
     '';
     homepage = "http://www.fontsquirrel.com/fonts/poly";
-    license = stdenv.lib.licenses.ofl;
-    maintainers = with stdenv.lib.maintainers; [ relrod ];
+    license = lib.licenses.ofl;
+    maintainers = with lib.maintainers; [ relrod ];
   };
 }