mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01: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
32 lines
999 B
Nix
32 lines
999 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
fetchFromGitHub rec {
|
|
name = "libre-baskerville-1.000";
|
|
|
|
owner = "impallari";
|
|
repo = "Libre-Baskerville";
|
|
rev = "2fba7c8e0a8f53f86efd3d81bc4c63674b0c613f";
|
|
|
|
postFetch = ''
|
|
tar xf $downloadedFile --strip=1
|
|
install -m444 -Dt $out/share/fonts/truetype *.ttf
|
|
install -m444 -Dt $out/share/doc/${name} README.md FONTLOG.txt
|
|
'';
|
|
|
|
sha256 = "1kpji85d1mgwq8b4fh1isznrhsrv32la3wf058rwjmhx5a3l7yaj";
|
|
|
|
meta = with lib; {
|
|
description = "A webfont family optimized for body text";
|
|
longDescription = ''
|
|
Libre Baskerville is a webfont family optimized for body text. It's Based
|
|
on 1941 ATF Baskerville Specimens but it has a taller x-height, wider
|
|
counters and less contrast that allow it to work on small sizes in any
|
|
screen.
|
|
'';
|
|
homepage = http://www.impallari.com/projects/overview/libre-baskerville;
|
|
license = licenses.ofl;
|
|
maintainers = with maintainers; [ cmfwyp ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|