Skip to content

Commit c3bbc8a

Browse files
rhtMic92
authored andcommittedMay 9, 2017
inconsolata-lgc: git-2015-04-18 -> 1.3 (#25641)
* inconsolata-lgc: git-2015-04-18 -> 1.3 * lgc.nix: fix evaluation
1 parent 5385a8e commit c3bbc8a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed
 

‎lib/maintainers.nix

+1
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@
446446
relrod = "Ricky Elrod <ricky@elrod.me>";
447447
renzo = "Renzo Carbonara <renzocarbonara@gmail.com>";
448448
retrry = "Tadas Barzdžius <retrry@gmail.com>";
449+
rht = "rht <rhtbot@protonmail.com>";
449450
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
450451
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
451452
rlupton20 = "Richard Lupton <richard.lupton@gmail.com>";

‎pkgs/data/fonts/inconsolata/lgc.nix

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
stdenv.mkDerivation rec {
44
name = "inconsolata-lgc-${version}";
5-
version = "git-2015-04-18";
5+
version = "1.3";
66

77
src = fetchFromGitHub {
88
owner = "MihailJP";
99
repo = "Inconsolata-LGC";
10-
rev = "30bbc1bd82502bf76f1cc5553f17388da2ba20e7";
11-
sha256 = "02af2gpksdxdp7zfh5qhgfqzc6gvah9v4ph818irwhs9gcq8833c";
10+
rev = "8adfef7a7316fcd2e9a5857054c7cdb2babeb35d";
11+
sha256 = "0dqjj3mlc28s8ljnph6l086b4j9r5dly4fldq59crycwys72zzai";
1212
};
1313

1414
buildInputs = [ fontforge ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
2424
cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true
2525
'';
2626

27-
meta = {
27+
meta = with stdenv.lib; {
2828
description = "Fork of Inconsolata font, with proper support of Cyrillic and Greek";
2929
longDescription = ''
3030
Inconsolata is one of the most suitable font for programmers created by Raph
@@ -50,11 +50,9 @@ stdenv.mkDerivation rec {
5050
'';
5151

5252
# See `License.txt' for details.
53-
license = stdenv.lib.licenses.ofl;
53+
license = licenses.ofl;
5454
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;
5957
};
6058
}

0 commit comments

Comments
 (0)
Please sign in to comment.