about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2023-11-01 13:29:10 -0400
committerGitHub <noreply@github.com>2023-11-01 13:29:10 -0400
commitec2e217c52bf8461d090d3887791da0506814e97 (patch)
treeeb49f47222f8e10636c6d2e911ec8fc54e0da521 /pkgs/data
parentf77fc56a81c77884f339396a77ba9defef2b2a05 (diff)
parent7620b617e59c9d78119fa67081ce72efd9bc1b40 (diff)
Merge pull request #250805 from xworld21/texlive-buildenv-minimal
texlive: overrideTeXConfig/withPackages
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/iwona/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/data/fonts/iwona/default.nix b/pkgs/data/fonts/iwona/default.nix
index 0d3944b2da106..df5569f53797a 100644
--- a/pkgs/data/fonts/iwona/default.nix
+++ b/pkgs/data/fonts/iwona/default.nix
@@ -1,10 +1,9 @@
 { lib, stdenvNoCC, texlive }:
 
-stdenvNoCC.mkDerivation {
-  pname = "iwona";
-  version = "0.995b";
+stdenvNoCC.mkDerivation rec {
+  inherit (src) pname version;
 
-  src = lib.head (builtins.filter (p: p.tlType == "run") texlive.iwona.pkgs);
+  src = texlive.pkgs.iwona;
 
   installPhase = ''
     runHook preInstall
@@ -20,7 +19,7 @@ stdenvNoCC.mkDerivation {
     # "[...] GUST Font License (GFL), which is a free license, legally
     # equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or
     # later." - GUST website
-    license = licenses.lppl13c;
+    license = src.meta.license;
     maintainers = with maintainers; [ siddharthist ];
     platforms = platforms.all;
   };