mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
league-spartan: init at 2.220
This commit is contained in:
parent
d70d01a952
commit
fc032281f3
40
pkgs/data/fonts/league-spartan/default.nix
Normal file
40
pkgs/data/fonts/league-spartan/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib, fetchzip, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "league-spartan";
|
||||
version = "2.220";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/theleagueof/league-spartan/releases/download/${self.version}/LeagueSpartan-${self.version}.tar.xz";
|
||||
hash = "sha256-dkvWRYli8vk+E0DkZ2NWCJKfSfdo4jEcGo0puQpFVVc=";
|
||||
};
|
||||
|
||||
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 fantastic new revival of ATF's classic Spartan, a geometric sans-serif that has no problem kicking its enemies in the chest.";
|
||||
longDescription = ''
|
||||
A new classic, this is a bold, modern, geometric sans-serif that has no
|
||||
problem kicking its enemies in the chest.
|
||||
|
||||
Taking a strong influence from ATF's classic Spartan family, we're
|
||||
starting our own family out with a single strong weight. We've put a few
|
||||
unique touches into a beautiful, historical typeface, and made sure to
|
||||
include an extensive characterset – currently totaling over 300 glyphs.
|
||||
|
||||
Over time, the open-source license will allow us expand League Spartan
|
||||
into a full family, with multiple weights and styles, and we're starting
|
||||
by releasing our first Bold style for this exciting, modern classic now.
|
||||
'';
|
||||
homepage = "https://www.theleagueofmoveabletype.com/league-spartan";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ minijackson ];
|
||||
};
|
||||
})
|
@ -27276,12 +27276,14 @@ with pkgs;
|
||||
|
||||
lato = callPackage ../data/fonts/lato {};
|
||||
|
||||
league-of-moveable-type = callPackage ../data/fonts/league-of-moveable-type {};
|
||||
|
||||
league-gothic = callPackage ../data/fonts/league-gothic { };
|
||||
|
||||
league-of-moveable-type = callPackage ../data/fonts/league-of-moveable-type {};
|
||||
|
||||
league-script-number-one = callPackage ../data/fonts/league-script-number-one { };
|
||||
|
||||
league-spartan = callPackage ../data/fonts/league-spartan { };
|
||||
|
||||
ledger-udev-rules = callPackage ../os-specific/linux/ledger-udev-rules {};
|
||||
|
||||
inherit (callPackages ../data/fonts/liberation-fonts { })
|
||||
|
Loading…
Reference in New Issue
Block a user