nixpkgs/pkgs/data/fonts/league-script-number-one/default.nix
2023-02-04 14:57:56 +01:00

36 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, fetchFromGitHub, stdenvNoCC }:
stdenvNoCC.mkDerivation (self: {
pname = "league-script-number-one";
version = "2011-05-25";
src = fetchFromGitHub {
owner = "theleagueof";
repo = self.pname;
rev = "225add0b37cf8268759ba4572e02630d9fb54ecf";
hash = "sha256-Z3Zrp0Os3On0tESVical1Qh6wY1H2Hc0OPTlkbtsrCI=";
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall
'';
meta = {
description = "A modern, coquettish script font";
longDescription = ''
This aint no Lucinda. League Script #1 is a modern, coquettish script
font that sits somewhere between your high school girlfriends love notes
and handwritten letters from the 20s. Designed exclusively for the
League of Moveable Type, it includes ligatures and will act as the
framework for future script designs.
'';
homepage = "https://www.theleagueofmoveabletype.com/league-script";
license = lib.licenses.ofl;
maintainers = with lib.maintainers; [ minijackson ];
};
})