-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Chapter supplement for heading references * fix: Smaller font for credit note * feat: Oldstyle figures using XCharter * fix: Remove unused Charis SIL font * fix: Remove redundant callPackage parameter
- Loading branch information
1 parent
9bf926b
commit 4897b2f
Showing
7 changed files
with
59 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ pkgs }: | ||
|
||
pkgs.stdenv.mkDerivation { | ||
pname = "XCharter"; | ||
version = "1.26"; | ||
|
||
src = pkgs.fetchzip { | ||
url = "https://mirrors.ctan.org/fonts/xcharter.zip"; | ||
hash = "sha256-2PfPmG15Q+woBzZ7BSC/6aq566/4PM40w1766+miRgg="; | ||
}; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
install -Dm644 -t $out/share/fonts/opentype/ opentype/*.otf | ||
runHook postInstall | ||
''; | ||
} |