Merge pull request #202341 from toastal/julia-mono-0.046

This commit is contained in:
Sandro 2022-11-28 11:49:45 +01:00 committed by GitHub
commit baf863dbd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,20 @@
{ lib, fetchzip }:
let
version = "0.044";
version = "0.046";
in
fetchzip {
name = "JuliaMono-ttf-${version}";
url = "https://github.com/cormullion/juliamono/releases/download/v${version}/JuliaMono-ttf.tar.gz";
sha256 = "sha256-KCU1eOSEWjYh6kPda/iCtZUIWIq5lK79uUCLl2w7SEg=";
sha256 = "sha256-+Ro517m1unQskQFhsT6oiz19aov87/tT1jlP/XB7kFU=";
stripRoot = false;
postFetch = ''
mkdir -p $out/share/fonts/truetype
tar xf $downloadedFile -C $out/share/fonts/truetype
mv $out/*.ttf $out/share/fonts/truetype
rm $out/LICENSE
'';
meta = with lib; {