base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ge / gelasio / package.nix
blob9f62d7464185ce7c8907f4666db55117d933447a
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "gelasio";
5   version = "unstable-2022-06-09";
7   src = fetchFromGitHub {
8     owner = "SorkinType";
9     repo = "Gelasio";
10     rev = "a75c6d30a35f74cdbaea1813bdbcdb64bb11d3d5";
11     hash = "sha256-ncm0lSDPPPREdxTx3dGl6OGBn4FGAjFTlQpA6oDCdMI=";
12   };
14   dontBuild = true;
16   installPhase = ''
17     runHook preInstall
19     mkdir -p $out/share/fonts/truetype
20     cp fonts/ttf/*.ttf $out/share/fonts/truetype/
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "Font which is metric-compatible with Microsoft's Georgia";
27     longDescription = ''
28       Gelasio is an original typeface which is metrics compatible with Microsoft's
29       Georgia in its Regular, Bold, Italic and Bold Italic weights. Interpolated
30       Medium, medium Italic, SemiBold and SemiBold Italic have now been added as well.
31     '';
32     homepage = "https://github.com/SorkinType/Gelasio";
33     license = licenses.ofl;
34     platforms = platforms.all;
35     maintainers = with maintainers; [ colemickens ];
36   };