c9eb44eab3
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
27 lines
801 B
Nix
27 lines
801 B
Nix
{ lib, buildPackages, fetchzip }:
|
|
|
|
let
|
|
version = "0.701";
|
|
in fetchzip {
|
|
name = "vegur-font-${version}";
|
|
|
|
# Upstream doesn't version their URLs.
|
|
# http://dotcolon.net/font/vegur/ → http://dotcolon.net/DL/font/vegur.zip
|
|
url = "http://download.opensuse.org/repositories/M17N:/fonts/SLE_12_SP3/src/dotcolon-vegur-fonts-0.701-1.4.src.rpm";
|
|
|
|
postFetch = ''
|
|
${buildPackages.rpmextract}/bin/rpmextract $downloadedFile
|
|
unzip vegur.zip
|
|
install -m444 -Dt $out/share/fonts/Vegur *.otf
|
|
'';
|
|
sha256 = "0iisi2scq72lyj7pc1f36fhfjnm676n5byl4zaavhbxpdrbc6d1v";
|
|
|
|
meta = with lib; {
|
|
homepage = http://dotcolon.net/font/vegur/;
|
|
description = "A humanist sans serif font.";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.samueldr ];
|
|
license = licenses.cc0;
|
|
};
|
|
}
|