2017-11-23 07:43:48 -08:00
|
|
|
{ stdenv, google-fonts }:
|
2010-11-24 03:19:38 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "inconsolata";
|
2010-11-24 03:19:38 -08:00
|
|
|
|
2017-11-23 07:43:48 -08:00
|
|
|
inherit (google-fonts) src version;
|
2010-11-24 03:19:38 -08:00
|
|
|
|
2017-11-22 23:21:15 -08:00
|
|
|
installPhase = ''
|
|
|
|
install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf
|
|
|
|
'';
|
2010-11-24 03:19:38 -08:00
|
|
|
|
2015-06-11 15:17:53 -07:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-22 01:14:28 -07:00
|
|
|
homepage = https://www.levien.com/type/myfonts/inconsolata.html;
|
2010-11-24 03:19:38 -08:00
|
|
|
description = "A monospace font for both screen and print";
|
2017-11-22 23:21:15 -08:00
|
|
|
maintainers = with maintainers; [ mikoim raskin rycee ];
|
2015-06-11 15:17:53 -07:00
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
2010-11-24 03:19:38 -08:00
|
|
|
};
|
2015-06-11 15:17:53 -07:00
|
|
|
}
|