mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||
|
||
stdenvNoCC.mkDerivation {
|
||
pname = "league-script-number-one";
|
||
version = "2011-05-25";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "theleagueof";
|
||
repo = "league-script-number-one";
|
||
rev = "225add0b37cf8268759ba4572e02630d9fb54ecf";
|
||
hash = "sha256-Z3Zrp0Os3On0tESVical1Qh6wY1H2Hc0OPTlkbtsrCI=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = {
|
||
description = "Modern, coquettish script font";
|
||
longDescription = ''
|
||
This ain’t no Lucinda. League Script #1 is a modern, coquettish script
|
||
font that sits somewhere between your high school girlfriend’s 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 ];
|
||
};
|
||
}
|