guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#44410] Add JuliaMono font Re: [bug#44410] (no subject)


From: Nicolò Balzarotti
Subject: [bug#44410] Add JuliaMono font Re: [bug#44410] (no subject)
Date: Tue, 03 Nov 2020 09:01:16 +0100

I forgot to put a subject on the email >.<
sorry

Nicolò Balzarotti <anothersms@gmail.com> writes:

> Hi guix!
>
> This patch adds JuliaMono, a monospaced font.
>
> Thanks!
>
> From dfa2d577a54d3c4d291415ff2f8e23e41e2b2303 Mon Sep 17 00:00:00 2001
> From: nixo <nicolo@nixo.xyz>
> Date: Sun, 1 Nov 2020 11:04:12 +0100
> Subject: [PATCH] gnu: Add font-juliamono.
>
> * gnu/packages/fonts.scm (font-juliamono): New variable.
> ---
>  gnu/packages/fonts.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> index f39c529beb..806fe0bb8d 100644
> --- a/gnu/packages/fonts.scm
> +++ b/gnu/packages/fonts.scm
> @@ -1762,6 +1762,37 @@ Mono’s typeface forms are simple and free from 
> unnecessary details.  Rendered
>  in small sizes, the text looks crisper.")
>      (license license:asl2.0)))
>  
> +(define-public font-juliamono
> +  (package
> +    (name "font-juliamono")
> +    (version "0.025")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/cormullion/juliamono";)
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "1w8mpl9zc1y4j1f26ikbz5g9dqsszhikp4r9p1d3ch3b5ayb5c3m"))))
> +    (build-system font-build-system)
> +    (arguments
> +     `(#:phases
> +       (modify-phases %standard-phases
> +         (add-after 'unpack 'delete-website-folder
> +           ;; This folder contains other unrelated fonts
> +           (lambda _
> +             (delete-file-recursively "website")
> +             #t)))))
> +    (home-page "https://github.com/cormullion/juliamono";)
> +    (synopsis "Monospaced font for programming")
> +    (description
> +     "JuliaMono is a monospaced font for scientific and technical computing,
> +designed to work for programming in the Julia Programming Language and other
> +text environments.")
> +    (license license:silofl1.1)))
> +
>  (define-public font-vazir
>    (package
>      (name "font-vazir")
> -- 
> 2.29.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]