nixpkgs-suyu/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 23:07:04 +02:00
2017-08-10 21:43:49 +02:00
let
2021-07-28 06:20:00 +02:00
version = "3.0.5";
2017-08-10 21:43:49 +02:00
in fetchzip rec {
name = "overpass-${version}";
2016-10-14 23:07:04 +02:00
2021-07-28 06:20:00 +02:00
url = "https://github.com/RedHatOfficial/Overpass/releases/download/v${version}/overpass-${version}.zip";
2016-10-14 23:07:04 +02:00
2017-08-10 21:43:49 +02:00
postFetch = ''
2021-07-28 06:20:00 +02: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 23:07:04 +02:00
'';
2021-07-28 06:20:00 +02:00
sha256 = "1fpyhd6x3i3g0xxjmyfnjsri1kkvci15fv7jp1bnza7k0hz0bnha";
2017-08-10 21:43:49 +02:00
meta = with lib; {
2019-11-26 22:24:15 +01:00
homepage = "https://overpassfont.org/";
2016-10-14 23:07:04 +02:00
description = "Font heavily inspired by Highway Gothic";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}