summaryrefslogtreecommitdiffstats
path: root/pkgs/data/fonts/league-gothic/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/fonts/league-gothic/default.nix')
-rw-r--r--pkgs/data/fonts/league-gothic/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/data/fonts/league-gothic/default.nix b/pkgs/data/fonts/league-gothic/default.nix
new file mode 100644
index 000000000000..4186eb70f6db
--- /dev/null
+++ b/pkgs/data/fonts/league-gothic/default.nix
@@ -0,0 +1,39 @@
+{ lib, fetchzip, stdenvNoCC }:
+
+stdenvNoCC.mkDerivation (self: {
+ pname = "league-gothic";
+ version = "1.601";
+
+ src = fetchzip {
+ url = "https://github.com/theleagueof/league-gothic/releases/download/${self.version}/LeagueGothic-${self.version}.tar.xz";
+ hash = "sha256-emkXKyQw4R0Zgg02oJsvBkqV0jmczP0tF0K2IKqJHMA=";
+ };
+
+ installPhase = ''
+ runHook preInstall
+
+ install -D -m444 -t $out/share/fonts/truetype $src/static/TTF/*.ttf
+ install -D -m444 -t $out/share/fonts/opentype $src/static/OTF/*.otf
+
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "A revival of an old classic, Alternate Gothic #1";
+ longDescription = ''
+ League Gothic is a revival of an old classic, and one of our favorite
+ typefaces, Alternate Gothic #1. It was originally designed by Morris
+ Fuller Benton for the American Type Founders Company in 1903. The company
+ went bankrupt in 1993, and since the original typeface was created before
+ 1923, the typeface is in the public domain.
+
+ We decided to make our own version, and contribute it to the Open Source
+ Type Movement. Thanks to a commission from the fine & patient folks over
+ at WND.com, it’s been revised & updated with contributions from Micah
+ Rich, Tyler Finck, and Dannci, who contributed extra glyphs.
+ '';
+ homepage = "https://www.theleagueofmoveabletype.com/league-gothic";
+ license = lib.licenses.ofl;
+ maintainers = with lib.maintainers; [ minijackson ];
+ };
+})