Skip to content

Commit

Permalink
Merge pull request #31461 from siddharthist/libertinus
Browse files Browse the repository at this point in the history
libertinus: init at 6.4
  • Loading branch information
orivej committed Nov 10, 2017
2 parents 24e87b4 + 5003f48 commit 98fcc3b
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/data/fonts/libertinus/default.nix
@@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "libertinus-${version}";
version = "6.4";

src = fetchFromGitHub {
rev = "v${version}";
owner = "khaledhosny";
repo = "libertinus";
sha256 = "0acnq4vpplp2s7kdnhncz61diji3wmhca04g27yqpk03ahb40x9g";
};

installPhase = ''
mkdir -p $out/share/fonts/opentype/
mkdir -p $out/share/doc/${name}/
cp *.otf $out/share/fonts/opentype/
cp *.txt $out/share/doc/${name}/
'';

outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "0yn526kwb4xjyf6gvf0wflqi45z5dlzicycz2q003a6if5fgqcz3";

meta = with stdenv.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/khaledhosny/libertinus;
license = licenses.ofl;
maintainers = with maintainers; [ siddharthist ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -13394,6 +13394,8 @@ with pkgs;

libertine = callPackage ../data/fonts/libertine { };

libertinus = callPackage ../data/fonts/libertinus { };

libre-baskerville = callPackage ../data/fonts/libre-baskerville { };

libre-bodoni = callPackage ../data/fonts/libre-bodoni { };
Expand Down

0 comments on commit 98fcc3b

Please sign in to comment.