mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
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
28 lines
705 B
Nix
28 lines
705 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
majorVersion = "1";
|
|
minorVersion = "10";
|
|
pname = "route159";
|
|
in
|
|
|
|
fetchzip rec {
|
|
name = "${pname}-font-${majorVersion}.${minorVersion}";
|
|
|
|
url = "http://dotcolon.net/DL/font/${pname}_${majorVersion}${minorVersion}.zip";
|
|
sha256 = "1nv5csg73arvvwpac7ylh4j9n0s3qp79rbv2s4jvs2bf6gqhsq7h";
|
|
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts/opentype/${pname}
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://dotcolon.net/font/${pname}/";
|
|
description = "A weighted sans serif font";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ leenaars ];
|
|
license = licenses.ofl;
|
|
};
|
|
}
|