about summary refs log tree commit diff
path: root/pkgs/data/fonts/iwona
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/fonts/iwona')
-rw-r--r--pkgs/data/fonts/iwona/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/data/fonts/iwona/default.nix b/pkgs/data/fonts/iwona/default.nix
deleted file mode 100644
index 6a40b20b28e0..000000000000
--- a/pkgs/data/fonts/iwona/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, stdenvNoCC, texlive }:
-
-stdenvNoCC.mkDerivation rec {
-  inherit (src) pname version;
-
-  src = texlive.pkgs.iwona;
-
-  installPhase = ''
-    runHook preInstall
-
-    install -Dm644 fonts/opentype/nowacki/iwona/*.otf -t $out/share/fonts/opentype
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    description = "Two-element sans-serif typeface, created by MaƂgorzata Budyta";
-    homepage = "https://jmn.pl/en/kurier-i-iwona/";
-    # "[...] 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 = src.meta.license;
-    maintainers = with maintainers; [ siddharthist ];
-    platforms = platforms.all;
-  };
-}