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

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

30 lines
795 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2016-10-14 23:07:04 +02:00
stdenvNoCC.mkDerivation rec {
pname = "overpass";
2021-07-28 06:20:00 +02:00
version = "3.0.5";
2016-10-14 23:07:04 +02:00
src = fetchzip {
url = "https://github.com/RedHatOfficial/Overpass/releases/download/v${version}/overpass-${version}.zip";
hash = "sha256-8AWT0/DELfNWXtZOejC90DbUSOtyGt9tSkcSuO7HP2o=";
};
installPhase = ''
runHook preInstall
2016-10-14 23:07:04 +02:00
install -Dm644 */*/*.otf -t $out/share/fonts/opentype
install -Dm644 */*/*.ttf -t $out/share/fonts/truetype
install -Dm644 *.md -t $out/share/doc/${pname}-${version}
runHook postInstall
'';
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 ];
};
}