nixpkgs/pkgs/data/fonts/hubot-sans/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-11 20:53:17 +00:00
{ lib
, fetchzip
2022-11-11 20:53:17 +00:00
, stdenvNoCC
}:
stdenvNoCC.mkDerivation (finalAttrs: {
2022-11-11 20:53:17 +00:00
pname = "hubot-sans";
version = "1.0.1";
2022-11-11 20:53:17 +00:00
src = fetchzip {
url = "https://github.com/github/hubot-sans/releases/download/v${finalAttrs.version}/Hubot-Sans.zip";
hash = "sha256-EWTyoGNqyZcqlF1H1Tdcodc8muHIo8C9gbSPAjiogRk=";
stripRoot = false;
2022-11-11 20:53:17 +00:00
};
installPhase = ''
runHook preInstall
install -Dm644 Hubot\ Sans/TTF/*.ttf -t $out/share/fonts/truetype/
install -Dm644 Hubot\ Sans/OTF/*.otf -t $out/share/fonts/opentype/
runHook postInstall
2022-11-11 20:53:17 +00:00
'';
meta = {
description = "A variable font from GitHub";
homepage = "https://github.com/github/hubot-sans";
changelog = "https://github.com/github/hubot-sans/releases/tag/v${finalAttrs.version}";
2022-11-11 20:53:17 +00:00
license = lib.licenses.ofl;
longDescription = ''
Hubot Sans is Mona Sanss robotic sidekick. The typeface is designed with
more geometric accents to lend a technical and idiosyncratic feelperfect
for headers and pull-quotes. Made together with Degarism.
Hubot Sans is a variable font. Variable fonts enable different variations
of a typeface to be incorporated into one single file, and are supported
by all major browsers.
'';
maintainers = with lib.maintainers; [ drupol ];
platforms = lib.platforms.all;
};
})