2023-02-02 18:25:31 +00:00
|
|
|
|
{ lib, stdenvNoCC, fetchzip }:
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
|
pname = "JuliaMono-ttf";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
version = "0.055";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
src = fetchzip {
|
|
|
|
|
url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz";
|
|
|
|
|
stripRoot = false;
|
2024-05-15 15:35:15 +00:00
|
|
|
|
hash = "sha256-bE7XjVzleSo5hjc7Azcl8R4OgJzsj1U21UOuXrBkulA=";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
};
|
2022-12-02 08:20:57 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
installPhase = ''
|
|
|
|
|
runHook preInstall
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
2020-10-19 23:25:03 +00:00
|
|
|
|
mkdir -p $out/share/fonts/truetype
|
2023-02-02 18:25:31 +00:00
|
|
|
|
mv *.ttf $out/share/fonts/truetype
|
|
|
|
|
|
|
|
|
|
runHook postInstall
|
2020-10-16 20:44:37 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
|
meta = with lib; {
|
2020-10-16 20:44:37 +00:00
|
|
|
|
description = "A monospaced font for scientific and technical computing";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
longDescription = ''
|
2021-05-20 23:08:51 +00: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-03-09 03:18:52 +00:00
|
|
|
|
'';
|
|
|
|
|
maintainers = with maintainers; [ suhr ];
|
|
|
|
|
platforms = with platforms; all;
|
2021-09-18 10:52:07 +00:00
|
|
|
|
homepage = "https://juliamono.netlify.app/";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
license = licenses.ofl;
|
2020-10-16 20:44:37 +00:00
|
|
|
|
};
|
|
|
|
|
}
|