mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00: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
26 lines
711 B
Nix
26 lines
711 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "2.2";
|
|
in fetchzip rec {
|
|
name = "oldstandard-${version}";
|
|
|
|
url = "https://github.com/akryukov/oldstand/releases/download/v${version}/${name}.otf.zip";
|
|
|
|
postFetch = ''
|
|
unzip $downloadedFile
|
|
install -m444 -Dt $out/share/fonts/opentype *.otf
|
|
install -m444 -Dt $out/share/doc/${name} FONTLOG.txt
|
|
'';
|
|
|
|
sha256 = "1qwfsyp51grr56jcnkkmnrnl3r20pmhp9zh9g88kp64m026cah6n";
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/akryukov/oldstand;
|
|
description = "An attempt to revive a specific type of Modern style of serif typefaces";
|
|
maintainers = with maintainers; [ raskin rycee ];
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|