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

25 lines
694 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
2018-11-02 22:23:33 +00:00
version = "3.0.3";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "overpass-${version}";
2016-10-14 21:07:04 +00:00
2017-08-10 19:43:49 +00:00
url = "https://github.com/RedHatBrand/Overpass/archive/${version}.zip";
2016-10-14 21:07:04 +00:00
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/fonts/opentype ; unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
mkdir -p $out/share/doc/${name} ; unzip -j $downloadedFile \*.md -d $out/share/doc/${name}
2016-10-14 21:07:04 +00:00
'';
2018-11-02 22:23:33 +00:00
sha256 = "1m6p7rrlyqikjvypp4698sn0lp3a4z0z5al4swblfhg8qaxzv5pg";
2017-08-10 19:43:49 +00:00
meta = with lib; {
2016-10-14 21:07:04 +00:00
homepage = http://overpassfont.org/;
description = "Font heavily inspired by Highway Gothic";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}