mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
30dbe21959
Co-authored-by: drupol <pol.dellaiera@protonmail.com>
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenvNoCC, fetchurl, unzip }:
|
||
|
||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||
pname = "intel-one-mono";
|
||
version = "1.2.1";
|
||
|
||
srcs = [
|
||
(fetchurl {
|
||
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${finalAttrs.version}/ttf.zip";
|
||
hash = "sha256-DV/PT+P+GGq/ejS5cx5ENuCy+iiE32AMOirwuTCP3vY=";
|
||
})
|
||
];
|
||
|
||
sourceRoot = ".";
|
||
|
||
nativeBuildInputs = [
|
||
unzip
|
||
];
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
install -Dm644 -t $out/share/fonts/truetype/ ttf/*.ttf
|
||
install -Dm644 -t $out/share/fonts/opentype/ otf/*.otf
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Intel One Mono, an expressive monospaced font family that’s 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${finalAttrs.version}";
|
||
license = licenses.ofl;
|
||
maintainers = [ maintainers.simoneruffini ];
|
||
platforms = platforms.all;
|
||
};
|
||
})
|