intel-one-mono: 1.2.0 -> 1.2.1

Co-authored-by: drupol <pol.dellaiera@protonmail.com>
This commit is contained in:
oluceps 2023-06-13 15:36:09 +08:00
parent 3da1e72b08
commit 30dbe21959
No known key found for this signature in database

View file

@ -1,17 +1,17 @@
{ lib, stdenvNoCC, fetchurl, unzip}:
{ lib, stdenvNoCC, fetchurl, unzip }:
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "intel-one-mono";
version = "1.2.0";
version = "1.2.1";
srcs = [
(fetchurl {
url = "https://github.com/intel/intel-one-mono/releases/download/V${version}/otf.zip";
sha256 = "sha256-VnXIaW77dRXvXB1Vr01xRQDMECltwzF/RMqGgAWnu5M=";
})
url = "https://github.com/intel/intel-one-mono/releases/download/V${finalAttrs.version}/otf.zip";
hash = "sha256-RBJwIUkmAZIRaIEWUxFZlRMfFTUFdLbHCMRkagU0gU0=";
})
(fetchurl {
url = "https://github.com/intel/intel-one-mono/releases/download/V${version}/ttf.zip";
sha256 = "sha256-kaz0DePeO8nvKVonYJhs5f2+ps/5Xo5psjg1hoxzaiU=";
url = "https://github.com/intel/intel-one-mono/releases/download/V${finalAttrs.version}/ttf.zip";
hash = "sha256-DV/PT+P+GGq/ejS5cx5ENuCy+iiE32AMOirwuTCP3vY=";
})
];
@ -31,9 +31,9 @@ stdenvNoCC.mkDerivation rec {
meta = with lib; {
description = "Intel One Mono, an expressive monospaced font family thats built with clarity, legibility, and the needs of developers in mind";
homepage = "https://github.com/intel/intel-one-mono";
changelog = "https://github.com/intel/intel-one-mono/releases/tag/V${version}";
changelog = "https://github.com/intel/intel-one-mono/releases/tag/V${finalAttrs.version}";
license = licenses.ofl;
maintainers = [ maintainers.simoneruffini];
maintainers = [ maintainers.simoneruffini ];
platforms = platforms.all;
};
}
})