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

31 lines
819 B
Nix
Raw Normal View History

2016-10-14 21:07:04 +00:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "overpass-${version}";
version = "2.1";
src = fetchurl {
url = "https://github.com/RedHatBrand/overpass/releases/download/2.1/overpass-fonts-ttf-2.1.zip";
sha256 = "1kd7vbqffp5988j3p4zxkxajdmfviyv4y6rzk7jazg81xcsxicwf";
};
nativeBuildInputs = [ unzip ];
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share/doc/${name}
mkdir -p $out/share/fonts/truetype
cp -v *.ttf $out/share/fonts/truetype
cp -v LICENSE.md README.md $out/share/doc/${name}
'';
meta = with stdenv.lib; {
homepage = http://overpassfont.org/;
description = "Font heavily inspired by Highway Gothic";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}