2016-08-25 09:28:03 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
2016-08-28 19:18:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-08-31 05:59:01 +00:00
|
|
|
name = "oxygenfonts-20160824";
|
2016-08-28 19:18:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vernnobile";
|
|
|
|
repo = "oxygenFont";
|
|
|
|
rev = "62db0ebe3488c936406685485071a54e3d18473b";
|
|
|
|
sha256 = "134kx3d0g3zdkw8kl8p6j37fzw3bl163jv2dx4dk1451f3ramcnh";
|
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/fonts/truetype/
|
|
|
|
cp OxygenSans-version-0.4/*/*.ttf $out/share/fonts/truetype/
|
|
|
|
cp Oxygen-Monospace/*.ttf $out/share/fonts/truetype/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Desktop/gui font for integrated use with the KDE desktop";
|
|
|
|
longDescription = ''
|
2016-08-25 09:28:03 +00:00
|
|
|
Oxygen Font is a font family originally aimed as a desktop/gui
|
|
|
|
font for integrated use with the KDE desktop.
|
|
|
|
|
|
|
|
The basic concept for Oxygen Font was to design a clear,
|
|
|
|
legible, sans serif, that would be rendered with Freetype on
|
|
|
|
Linux-based devices. In addition a bold weight, plus regular and
|
|
|
|
bold italics, and a monospace version will be made.
|
|
|
|
|
|
|
|
Oxygen is constructed closely with the gridfitting aspects of
|
|
|
|
the Freetype font rendering engine. The oxygen fonts are also
|
|
|
|
autohinted with Werner Lemberg's "ttfautohint" library to
|
|
|
|
further the compatibility with the Freetype engine. The aim of
|
|
|
|
this approach is to produce a family of freetype-specific
|
|
|
|
desktop fonts whose appearance will stay uniform under different
|
|
|
|
screen render settings, unlike more traditionally designed
|
|
|
|
'screen fonts' that have tended to be designed for best
|
|
|
|
legibility on the Windows GDI render engine.
|
|
|
|
|
|
|
|
The main creator of Oxygen, Vernon Adams, suffered a heavy
|
|
|
|
traffic accident three months after its last release, causing him severe brain
|
|
|
|
injury. He finally passed away, sans oxygen, on August 25th 2016.
|
|
|
|
See: http://sansoxygen.com/
|
2016-08-28 19:18:10 +00:00
|
|
|
'';
|
2016-08-25 09:28:03 +00:00
|
|
|
|
2016-08-28 19:18:10 +00:00
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2016-08-25 09:28:03 +00:00
|
|
|
}
|