24 lines
659 B
Nix
24 lines
659 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|