nixpkgs/pkgs/data/fonts/inconsolata/default.nix

22 lines
600 B
Nix
Raw Normal View History

2017-08-10 19:43:49 +00:00
{ stdenv, fetchzip }:
2017-08-10 19:43:49 +00:00
let
version = "1.010";
2017-08-10 19:43:49 +00:00
in fetchzip {
name = "inconsolata-${version}";
2017-08-10 19:43:49 +00:00
url = "http://www.levien.com/type/myfonts/Inconsolata.otf";
2017-08-10 19:43:49 +00:00
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/opentype/inconsolata.otf";
2017-08-10 19:43:49 +00:00
sha256 = "1yyf7agabfv0ia57c7in0r33x7c8ay445zf7c3dfc83j6w85g3i7";
meta = with stdenv.lib; {
homepage = http://www.levien.com/type/myfonts/inconsolata.html;
description = "A monospace font for both screen and print";
maintainers = with maintainers; [ raskin rycee ];
license = licenses.ofl;
platforms = platforms.all;
};
}