2020-10-10 09:38:22 +02:00
|
|
|
|
{ lib, fetchzip }:
|
|
|
|
|
|
|
|
|
|
let
|
2022-02-10 04:12:41 +01:00
|
|
|
|
version = "0.044";
|
2021-02-28 09:40:10 +01:00
|
|
|
|
|
2021-05-20 18:59:08 +02:00
|
|
|
|
in
|
|
|
|
|
fetchzip {
|
|
|
|
|
name = "JuliaMono-ttf-${version}";
|
|
|
|
|
url = "https://github.com/cormullion/juliamono/releases/download/v${version}/JuliaMono-ttf.tar.gz";
|
2022-02-10 04:12:41 +01:00
|
|
|
|
sha256 = "sha256-KCU1eOSEWjYh6kPda/iCtZUIWIq5lK79uUCLl2w7SEg=";
|
2020-10-10 09:38:22 +02:00
|
|
|
|
|
|
|
|
|
postFetch = ''
|
2020-10-19 09:08:27 +02:00
|
|
|
|
mkdir -p $out/share/fonts/truetype
|
2021-05-20 18:59:08 +02:00
|
|
|
|
tar xf $downloadedFile -C $out/share/fonts/truetype
|
2020-10-10 09:38:22 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2021-03-04 02:24:06 +01:00
|
|
|
|
meta = with lib; {
|
2020-10-10 09:38:22 +02:00
|
|
|
|
description = "A monospaced font for scientific and technical computing";
|
2021-02-28 09:40:10 +01:00
|
|
|
|
longDescription = ''
|
2021-05-05 06:20:00 +02:00
|
|
|
|
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).
|
2021-02-28 09:40:10 +01:00
|
|
|
|
'';
|
2021-03-04 02:24:06 +01:00
|
|
|
|
maintainers = with maintainers; [ suhr ];
|
|
|
|
|
platforms = with platforms; all;
|
2021-09-08 06:32:00 +02:00
|
|
|
|
homepage = "https://juliamono.netlify.app/";
|
2021-03-04 02:24:06 +01:00
|
|
|
|
license = licenses.ofl;
|
2020-10-10 09:38:22 +02:00
|
|
|
|
};
|
|
|
|
|
}
|