inconsolata-lgc: git-2015-04-18 -> 1.3 (#25641)

* inconsolata-lgc: git-2015-04-18 -> 1.3

* lgc.nix: fix evaluation

authored by rht and committed by Jörg Thalheim c3bbc8ad 5385a8e2

+8 -9
+1
lib/maintainers.nix
··· 446 446 relrod = "Ricky Elrod <ricky@elrod.me>"; 447 447 renzo = "Renzo Carbonara <renzocarbonara@gmail.com>"; 448 448 retrry = "Tadas Barzdžius <retrry@gmail.com>"; 449 + rht = "rht <rhtbot@protonmail.com>"; 449 450 rick68 = "Wei-Ming Yang <rick68@gmail.com>"; 450 451 rickynils = "Rickard Nilsson <rickynils@gmail.com>"; 451 452 rlupton20 = "Richard Lupton <richard.lupton@gmail.com>";
+7 -9
pkgs/data/fonts/inconsolata/lgc.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "inconsolata-lgc-${version}"; 5 - version = "git-2015-04-18"; 5 + version = "1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "MihailJP"; 9 9 repo = "Inconsolata-LGC"; 10 - rev = "30bbc1bd82502bf76f1cc5553f17388da2ba20e7"; 11 - sha256 = "02af2gpksdxdp7zfh5qhgfqzc6gvah9v4ph818irwhs9gcq8833c"; 10 + rev = "8adfef7a7316fcd2e9a5857054c7cdb2babeb35d"; 11 + sha256 = "0dqjj3mlc28s8ljnph6l086b4j9r5dly4fldq59crycwys72zzai"; 12 12 }; 13 13 14 14 buildInputs = [ fontforge ]; ··· 24 24 cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true 25 25 ''; 26 26 27 - meta = { 27 + meta = with stdenv.lib; { 28 28 description = "Fork of Inconsolata font, with proper support of Cyrillic and Greek"; 29 29 longDescription = '' 30 30 Inconsolata is one of the most suitable font for programmers created by Raph ··· 50 50 ''; 51 51 52 52 # See `License.txt' for details. 53 - license = stdenv.lib.licenses.ofl; 53 + license = licenses.ofl; 54 54 homepage = https://github.com/MihailJP/Inconsolata-LGC; 55 - maintainers = [ 56 - stdenv.lib.maintainers.avnik 57 - ]; 58 - platforms = stdenv.lib.platforms.linux; 55 + maintainers = with maintainers; [ avnik rht ]; 56 + platforms = platforms.linux; 59 57 }; 60 58 }