2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2016-04-16 10:15:21 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
let
|
2016-04-16 10:15:21 +01:00
|
|
|
version = "2013.06.07"; # date of most recent file in distribution
|
2019-08-13 22:52:01 +01:00
|
|
|
in fetchzip {
|
2017-08-10 20:43:49 +01:00
|
|
|
name = "helvetica-neue-lt-std-${version}";
|
2016-04-16 10:15:21 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
url = "http://www.ephifonts.com/downloads/helvetica-neue-lt-std.zip";
|
2016-04-16 10:15:21 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts
|
|
|
|
unzip -j $downloadedFile Helvetica\ Neue\ LT\ Std/\*.otf -d $out/share/fonts/opentype
|
2016-04-16 10:15:21 +01:00
|
|
|
'';
|
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
sha256 = "0ampp9vf9xw0sdppl4lb9i9h75ywljhdcqmzh45mx2x9m7h6xgg9";
|
|
|
|
|
2016-04-16 10:15:21 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.ephifonts.com/free-helvetica-font-helvetica-neue-lt-std.html";
|
2016-04-16 10:15:21 +01:00
|
|
|
description = "Helvetica Neue LT Std font";
|
|
|
|
longDescription = ''
|
|
|
|
Helvetica Neue Lt Std is one of the most highly rated and complete
|
|
|
|
fonts of all time. Developed in early 1983, this font has well
|
|
|
|
camouflaged heights and weights. The structure of the word is uniform
|
|
|
|
throughout all the characters.
|
|
|
|
|
|
|
|
The legibility with Helvetica Neue LT Std is said to have improved as
|
|
|
|
opposed to other fonts. The tail of it is much longer in this
|
|
|
|
font. The numbers are well spaced and defined with high accuracy. The
|
|
|
|
punctuation marks are heavily detailed as well.
|
|
|
|
'';
|
2019-05-13 02:55:32 +01:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
maintainers = [ lib.maintainers.romildo ];
|
|
|
|
platforms = lib.platforms.all;
|
2016-04-16 10:15:21 +01:00
|
|
|
};
|
|
|
|
}
|