mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
38 lines
1 KiB
Nix
38 lines
1 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "gelasio";
|
|
version = "unstable-2022-06-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SorkinType";
|
|
repo = "Gelasio";
|
|
rev = "a75c6d30a35f74cdbaea1813bdbcdb64bb11d3d5";
|
|
hash = "sha256-ncm0lSDPPPREdxTx3dGl6OGBn4FGAjFTlQpA6oDCdMI=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
cp fonts/ttf/*.ttf $out/share/fonts/truetype/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Font which is metric-compatible with Microsoft's Georgia";
|
|
longDescription = ''
|
|
Gelasio is an original typeface which is metrics compatible with Microsoft's
|
|
Georgia in its Regular, Bold, Italic and Bold Italic weights. Interpolated
|
|
Medium, medium Italic, SemiBold and SemiBold Italic have now been added as well.
|
|
'';
|
|
homepage = "https://github.com/SorkinType/Gelasio";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ colemickens ];
|
|
};
|
|
}
|
|
|