depot/third_party/nixpkgs/pkgs/data/fonts/iwona/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
741 B
Nix

{ 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;
};
}