3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/fonts/overpass/default.nix

27 lines
767 B
Nix
Raw Normal View History

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