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 @@ in small sizes, the text looks crisper.")
|
||||||
(define-public font-juliamono
|
(define-public font-juliamono
|
||||||
(package
|
(package
|
||||||
(name "font-juliamono")
|
(name "font-juliamono")
|
||||||
(version "0.031")
|
(version "0.043")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append
|
||||||
(url "https://github.com/cormullion/juliamono")
|
"https://github.com/cormullion/juliamono/releases/download/"
|
||||||
(commit (string-append "v" version))))
|
"v" version "/JuliaMono-ttf.tar.gz"))
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0pcz2qaw0g0gak4plvhgg3m76h4gamffa373r52dzx0qwn1i1cf1"))))
|
(base32
|
||||||
|
"0vb7n9yqgasnxzps13ckklay5bla6b0i79pzmfqvjms1r37079gh"))))
|
||||||
(build-system font-build-system)
|
(build-system font-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
(replace 'unpack
|
||||||
(add-after 'unpack 'delete-website-folder
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
;; This folder contains other unrelated fonts.
|
(mkdir "source")
|
||||||
(lambda _
|
(chdir "source")
|
||||||
(delete-file-recursively "website")
|
(invoke "tar" "xzf" source))))))
|
||||||
#t)))))
|
(native-inputs `(("tar" ,tar)))
|
||||||
(home-page "https://github.com/cormullion/juliamono")
|
(home-page "https://github.com/cormullion/juliamono")
|
||||||
(synopsis "Monospaced font for programming")
|
(synopsis "Monospaced font for programming")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue