Skip to content

Commit 6d359e7

Browse files
intel-one-mono: 1.3.0 -> 1.4.0
1 parent 52de0f1 commit 6d359e7

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed
Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
1-
{ lib, stdenvNoCC, fetchurl, unzip }:
1+
{
2+
lib,
3+
stdenvNoCC,
4+
fetchurl,
5+
unzip,
6+
}:
27

38
stdenvNoCC.mkDerivation (finalAttrs: {
49
pname = "intel-one-mono";
5-
version = "1.3.0";
10+
version = "1.4.0";
611

712
srcs = [
813
(fetchurl {
914
url = "https://github.com/intel/intel-one-mono/releases/download/V${finalAttrs.version}/otf.zip";
10-
hash = "sha256-iZIfkXH+GplVwES4LaQBIaCWs7OKmEto9J2SpzvagSs=";
15+
hash = "sha256-dO+O5mdAPHYHRbwS/F4ssWhFRBlPrT1TQJGcFzqCJ/w=";
1116
})
1217
(fetchurl {
1318
url = "https://github.com/intel/intel-one-mono/releases/download/V${finalAttrs.version}/ttf.zip";
14-
hash = "sha256-EeUTEMuoTHKmuO5Uj0jjiDRF9t7jxbIy45nTWozlgfc=";
19+
hash = "sha256-VIY1UtJdy5w/U2CylvyYDW4fv9AuDSFCJOi3jworzPA=";
1520
})
1621
];
1722

1823
sourceRoot = ".";
1924

20-
nativeBuildInputs = [
21-
unzip
22-
];
25+
nativeBuildInputs = [ unzip ];
2326

2427
installPhase = ''
2528
runHook preInstall
@@ -28,12 +31,15 @@ stdenvNoCC.mkDerivation (finalAttrs: {
2831
runHook postInstall
2932
'';
3033

31-
meta = with lib; {
34+
meta = {
3235
description = "Intel One Mono, an expressive monospaced font family that’s built with clarity, legibility, and the needs of developers in mind";
3336
homepage = "https://github.com/intel/intel-one-mono";
3437
changelog = "https://github.com/intel/intel-one-mono/releases/tag/V${finalAttrs.version}";
35-
license = licenses.ofl;
36-
maintainers = [ maintainers.simoneruffini ];
37-
platforms = platforms.all;
38+
license = lib.licenses.ofl;
39+
maintainers = with lib.maintainers; [
40+
luftmensch-luftmensch
41+
simoneruffini
42+
];
43+
platforms = lib.platforms.all;
3844
};
3945
})

0 commit comments

Comments
 (0)