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

32 lines
963 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2017-11-10 01:13:47 +00:00
let
version = "6.9";
in fetchFromGitHub rec {
name = "libertinus-${version}";
2017-11-10 01:13:47 +00:00
owner = "alif-type";
repo = "libertinus";
rev = "v${version}";
2017-11-10 01:13:47 +00:00
postFetch = ''
tar xf $downloadedFile --strip=1
install -m444 -Dt $out/share/fonts/opentype *.otf
install -m444 -Dt $out/share/doc/${name} *.txt
2017-11-10 01:13:47 +00:00
'';
sha256 = "0765a7w0askkhrjmjk638gcm9h6fcm1jpaza8iw9afr3sz1s0xlq";
2017-11-10 01:13:47 +00:00
meta = with lib; {
2017-11-10 01:13:47 +00:00
description = "A fork of the Linux Libertine and Linux Biolinum fonts";
longDescription = ''
Libertinus fonts is a fork of the Linux Libertine and Linux Biolinum fonts
that started as an OpenType math companion of the Libertine font family,
but grown as a full fork to address some of the bugs in the fonts.
'';
homepage = "https://github.com/alif-type/libertinus";
2017-11-10 01:13:47 +00:00
license = licenses.ofl;
maintainers = with maintainers; [ siddharthist ];
platforms = platforms.all;
};
}