mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
input-fonts: init at 2016-10-06 (#19080)
This commit is contained in:
parent
07289a3b71
commit
2763d4d4c7
2 changed files with 48 additions and 0 deletions
46
pkgs/data/fonts/input-fonts/default.nix
Normal file
46
pkgs/data/fonts/input-fonts/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ stdenv, requireFile, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "input-fonts-${version}";
|
||||
version = "2016-10-06"; # date of the download and checksum
|
||||
|
||||
src = requireFile {
|
||||
name = "Input-Font.zip";
|
||||
url = "http://input.fontbureau.com/download/";
|
||||
sha256 = "06hrsrb5a6hzrgkkhk0gdj92rhgr433vgn4j5g3pd8f1ijlfqn4y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
find Input_Fonts -name "*.ttf" -exec cp -a {} "$out"/share/fonts/truetype/ \;
|
||||
mkdir -p "$out"/share/doc
|
||||
cp -a *.txt "$out"/share/doc/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Fonts for Code, from Font Bureau";
|
||||
longDescrition = ''
|
||||
Input is a font family designed for computer programming, data,
|
||||
and text composition. It was designed by David Jonathan Ross
|
||||
between 2012 and 2014 and published by The Font Bureau. It
|
||||
contains a wide array of styles so you can fine-tune the
|
||||
typography that works best in your editing environment.
|
||||
|
||||
Input Mono is a monospaced typeface, where all characters occupy
|
||||
a fixed width. Input Sans and Serif are proportional typefaces
|
||||
that are designed with all of the features of a good monospace —
|
||||
generous spacing, large punctuation, and easily distinguishable
|
||||
characters — but without the limitations of a fixed width.
|
||||
'';
|
||||
homepage = http://input.fontbureau.com;
|
||||
license = licenses.proprietary;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -11619,6 +11619,8 @@ in
|
|||
inconsolata = callPackage ../data/fonts/inconsolata {};
|
||||
inconsolata-lgc = callPackage ../data/fonts/inconsolata/lgc.nix {};
|
||||
|
||||
input-fonts = callPackage ../data/fonts/input-fonts { };
|
||||
|
||||
iosevka = callPackage ../data/fonts/iosevka { };
|
||||
|
||||
ipafont = callPackage ../data/fonts/ipafont {};
|
||||
|
|
Loading…
Reference in a new issue