2015-09-21 10:25:39 +01:00
|
|
|
{stdenv, fetchFromGitHub, fontforge}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "inconsolata-lgc";
|
2017-05-09 16:05:01 +01:00
|
|
|
version = "1.3";
|
2015-09-21 10:25:39 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MihailJP";
|
|
|
|
repo = "Inconsolata-LGC";
|
2017-05-09 16:05:01 +01:00
|
|
|
rev = "8adfef7a7316fcd2e9a5857054c7cdb2babeb35d";
|
|
|
|
sha256 = "0dqjj3mlc28s8ljnph6l086b4j9r5dly4fldq59crycwys72zzai";
|
2015-09-21 10:25:39 +01:00
|
|
|
};
|
|
|
|
|
2018-01-10 00:27:23 +00:00
|
|
|
nativeBuildInputs = [ fontforge ];
|
2015-09-21 10:25:39 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2019-05-13 04:54:44 +01:00
|
|
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
|
|
|
|
find . -name '*.otf' -exec install -m444 -Dt $out/share/fonts/opentype {} \;
|
2019-08-15 13:41:18 +01:00
|
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} LICENSE README
|
2015-09-21 10:25:39 +01:00
|
|
|
'';
|
|
|
|
|
2017-05-09 16:05:01 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-09-21 10:25:39 +01:00
|
|
|
description = "Fork of Inconsolata font, with proper support of Cyrillic and Greek";
|
|
|
|
longDescription = ''
|
|
|
|
Inconsolata is one of the most suitable font for programmers created by Raph
|
|
|
|
Levien. Since the original Inconsolata does not contain Cyrillic alphabet,
|
|
|
|
it was slightly inconvenient for not a few programmers from Russia.
|
|
|
|
|
|
|
|
Inconsolata LGC is a modified version of Inconsolata with added the Cyrillic
|
|
|
|
alphabet which directly descends from Inconsolata Hellenic supporting modern
|
|
|
|
Greek.
|
|
|
|
|
|
|
|
Inconsolata LGC is licensed under SIL OFL.
|
|
|
|
|
|
|
|
|
|
|
|
Inconsolata LGC changes:
|
|
|
|
* Cyrillic glyphs added.
|
|
|
|
* Italic and Bold font added.
|
|
|
|
|
|
|
|
Changes inherited from Inconsolata Hellenic:
|
|
|
|
* Greek glyphs.
|
|
|
|
|
|
|
|
Changes inherited from Inconsolata-dz:
|
|
|
|
* Straight quotation marks.
|
|
|
|
'';
|
|
|
|
|
|
|
|
# See `License.txt' for details.
|
2017-05-09 16:05:01 +01:00
|
|
|
license = licenses.ofl;
|
2015-09-21 10:25:39 +01:00
|
|
|
homepage = https://github.com/MihailJP/Inconsolata-LGC;
|
2017-05-09 16:05:01 +01:00
|
|
|
maintainers = with maintainers; [ avnik rht ];
|
2015-09-21 10:25:39 +01:00
|
|
|
};
|
|
|
|
}
|