Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{
|
||
lib,
|
||
stdenvNoCC,
|
||
fetchzip,
|
||
}:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "JuliaMono-ttf";
|
||
version = "0.061";
|
||
|
||
src = fetchzip {
|
||
url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz";
|
||
stripRoot = false;
|
||
hash = "sha256-3DSjrTipIwP6HJF+flGCY9ArhWMJv6piBiiExRP6c7I=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
mkdir -p $out/share/fonts/truetype
|
||
mv *.ttf $out/share/fonts/truetype
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Monospaced font for scientific and technical computing";
|
||
longDescription = ''
|
||
JuliaMono is a monospaced typeface designed for use in text editing
|
||
environments that require a wide range of specialist and technical Unicode
|
||
characters. It was intended as a fun experiment to be presented at the
|
||
2020 JuliaCon conference in Lisbon, Portugal (which of course didn’t
|
||
physically happen in Lisbon, but online).
|
||
'';
|
||
maintainers = with maintainers; [ suhr ];
|
||
platforms = with platforms; all;
|
||
homepage = "https://juliamono.netlify.app/";
|
||
license = licenses.ofl;
|
||
};
|
||
}
|