helvetica-neue-lt-std: init at 2013.06.07

fix

authored by José Romildo Malaquias and committed by Robert Helgesson d94a8d67 9de93be6

+43
+41
pkgs/data/fonts/helvetica-neue-lt-std/default.nix
···
··· 1 + { stdenv, fetchurl, unzip }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "helvetica-neue-lt-std-${version}"; 5 + version = "2013.06.07"; # date of most recent file in distribution 6 + 7 + src = fetchurl { 8 + url = "http://www.ephifonts.com/downloads/helvetica-neue-lt-std.zip"; 9 + sha256 = "0nrjdj2a11dr6d3aihvjxzrkdi0wq6f2bvaiimi5iwmpyz80n0h6"; 10 + }; 11 + 12 + nativeBuildInputs = [ unzip ]; 13 + 14 + phases = [ "unpackPhase" "installPhase" ]; 15 + 16 + sourceRoot = "Helvetica Neue LT Std"; 17 + 18 + installPhase = '' 19 + mkdir -p $out/share/fonts/opentype 20 + cp -v *.otf $out/share/fonts/opentype 21 + ''; 22 + 23 + meta = { 24 + homepage = http://www.ephifonts.com/free-helvetica-font-helvetica-neue-lt-std.html; 25 + description = "Helvetica Neue LT Std font"; 26 + longDescription = '' 27 + Helvetica Neue Lt Std is one of the most highly rated and complete 28 + fonts of all time. Developed in early 1983, this font has well 29 + camouflaged heights and weights. The structure of the word is uniform 30 + throughout all the characters. 31 + 32 + The legibility with Helvetica Neue LT Std is said to have improved as 33 + opposed to other fonts. The tail of it is much longer in this 34 + font. The numbers are well spaced and defined with high accuracy. The 35 + punctuation marks are heavily detailed as well. 36 + ''; 37 + license = stdenv.lib.licenses.unfree; 38 + maintainers = [ stdenv.lib.maintainers.romildo ]; 39 + platforms = stdenv.lib.platforms.all; 40 + }; 41 + }
+2
pkgs/top-level/all-packages.nix
··· 11334 11335 hack-font = callPackage ../data/fonts/hack { }; 11336 11337 hicolor_icon_theme = callPackage ../data/icons/hicolor-icon-theme { }; 11338 11339 hanazono = callPackage ../data/fonts/hanazono { };
··· 11334 11335 hack-font = callPackage ../data/fonts/hack { }; 11336 11337 + helvetica-neue-lt-std = callPackage ../data/fonts/helvetica-neue-lt-std { }; 11338 + 11339 hicolor_icon_theme = callPackage ../data/icons/hicolor-icon-theme { }; 11340 11341 hanazono = callPackage ../data/fonts/hanazono { };