mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
961 B
Nix
32 lines
961 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "6.9";
|
|
in fetchFromGitHub rec {
|
|
name = "libertinus-${version}";
|
|
|
|
owner = "alif-type";
|
|
repo = "libertinus";
|
|
rev = "v${version}";
|
|
|
|
postFetch = ''
|
|
tar xf $downloadedFile --strip=1
|
|
install -m444 -Dt $out/share/fonts/opentype *.otf
|
|
install -m444 -Dt $out/share/doc/${name} *.txt
|
|
'';
|
|
sha256 = "0765a7w0askkhrjmjk638gcm9h6fcm1jpaza8iw9afr3sz1s0xlq";
|
|
|
|
meta = with lib; {
|
|
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;
|
|
license = licenses.ofl;
|
|
maintainers = with maintainers; [ siddharthist ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|