gnu: font-juliamono: Update to 0.043.
* gnu/packages/fonts.scm (font-juliamono): Update to 0.043. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
09b8fcc0b7
commit
38db6e10f0
1 changed files with 14 additions and 14 deletions
|
@ -1966,25 +1966,25 @@ (define-public font-jetbrains-mono
|
|||
(define-public font-juliamono
|
||||
(package
|
||||
(name "font-juliamono")
|
||||
(version "0.031")
|
||||
(version "0.043")
|
||||
(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))
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/cormullion/juliamono/releases/download/"
|
||||
"v" version "/JuliaMono-ttf.tar.gz"))
|
||||
(sha256
|
||||
(base32 "0pcz2qaw0g0gak4plvhgg3m76h4gamffa373r52dzx0qwn1i1cf1"))))
|
||||
(base32
|
||||
"0vb7n9yqgasnxzps13ckklay5bla6b0i79pzmfqvjms1r37079gh"))))
|
||||
(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)))))
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(replace 'unpack
|
||||
(lambda* (#:key source #:allow-other-keys)
|
||||
(mkdir "source")
|
||||
(chdir "source")
|
||||
(invoke "tar" "xzf" source))))))
|
||||
(native-inputs `(("tar" ,tar)))
|
||||
(home-page "https://github.com/cormullion/juliamono")
|
||||
(synopsis "Monospaced font for programming")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue