libertine-g: init at 2012-01-16

This commit is contained in:
K900 2024-05-20 12:20:44 +03:00
parent c387b6338f
commit b1f998f5c7

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchzip }:
stdenv.mkDerivation {
pname = "linux-libertine-g";
version = "2012-01-16";
src = fetchzip {
url = "http://www.numbertext.org/linux/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip";
hash = "sha256-UGTB7jsI6peivCtEt96RCSi5XHCrnjCSs0Ud5bF7uxk=";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -r *.ttf $out/share/fonts/truetype
'';
meta = {
description = "Graphite versions of Linux Libertine and Linux Biolinum font families for LibreOffice and OpenOffice.org";
homepage = "https://numbertext.org/linux/";
maintainers = [];
license = lib.licenses.ofl;
};
}