51 lines
1.7 KiB
Nix
51 lines
1.7 KiB
Nix
{ stdenv, requireFile, unzip }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "input-fonts";
|
|
version = "2019-11-25"; # date of the download and checksum
|
|
|
|
src = requireFile {
|
|
name = "Input-Font.zip";
|
|
url = "https://input.fontbureau.com/download/";
|
|
sha256 = "10rax2a7vzidcs7kyfg5lv5bwp9i7kvjpdcsd10p0517syijkp3b";
|
|
};
|
|
|
|
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/
|
|
'';
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "15sdhqqqd4jgk80fw7ncx49avi9cxbdgyrvnrfya0066x4q4r6lv";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Fonts for Code, from Font Bureau";
|
|
longDescription = ''
|
|
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 = https://input.fontbureau.com;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ romildo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|