nixpkgs/pkgs/data/fonts/overpass/default.nix

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

27 lines
767 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2016-10-14 21:07:04 +00:00
2017-08-10 19:43:49 +00:00
let
2021-07-28 04:20:00 +00:00
version = "3.0.5";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "overpass-${version}";
2016-10-14 21:07:04 +00:00
2021-07-28 04:20:00 +00:00
url = "https://github.com/RedHatOfficial/Overpass/releases/download/v${version}/overpass-${version}.zip";
2016-10-14 21:07:04 +00:00
2017-08-10 19:43:49 +00:00
postFetch = ''
2021-07-28 04:20:00 +00:00
mkdir -p $out/share/fonts $out/share/doc
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile \*.md -d $out/share/doc/${name}
2016-10-14 21:07:04 +00:00
'';
2021-07-28 04:20:00 +00:00
sha256 = "1fpyhd6x3i3g0xxjmyfnjsri1kkvci15fv7jp1bnza7k0hz0bnha";
2017-08-10 19:43:49 +00:00
meta = with lib; {
2019-11-26 21:24:15 +00:00
homepage = "https://overpassfont.org/";
2016-10-14 21:07:04 +00:00
description = "Font heavily inspired by Highway Gothic";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}