unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63506] [PATCH] gnu: Add font-scientifica.
@ 2023-05-14 20:21 Ahmad Draidi via Guix-patches via
  2023-05-15  9:52 ` 宋文武 via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2023-05-14 20:21 UTC (permalink / raw)
  To: 63506; +Cc: Ahmad Draidi, Zhu Zihao, 宋文武

* gnu/packages/fonts.scm (font-scientifica): New variable.
---
 gnu/packages/fonts.scm | 52 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index e4c53dbc73..c5bbce2592 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -3152,3 +3152,55 @@ (define-public font-spleen
 
 Spleen also has support for Powerline symbols out of the box.")
     (license license:bsd-2)))
+
+(define-public font-scientifica
+  (package
+    (name "font-scientifica")
+    (version "2.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/nerdypepper/scientifica/releases/download/"
+                    "v" version "/scientifica.tar"))
+              (sha256
+               (base32
+                "0zwa3s75lvbky2vn73i1fmxa37hi3zfm7f6wfpqwcip8l1lpi1gh"))))
+    (build-system font-build-system)
+    (outputs '("out" ;OTB
+               "bdf" "ttf"))
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (replace 'install
+                          (lambda* (#:key outputs #:allow-other-keys)
+                            (let* ((otb (assoc-ref outputs "out"))
+                                   (bdf (assoc-ref outputs "bdf"))
+                                   (ttf (assoc-ref outputs "ttf"))
+                                   (otb-font-dir (string-append (assoc-ref
+                                                                 outputs "out")
+                                                  "/share/fonts/misc"))
+                                   (ttf-font-dir (string-append (assoc-ref
+                                                                 outputs "ttf")
+                                                  "/share/fonts/truetype"))
+                                   (bdf-font-dir (string-append (assoc-ref
+                                                                 outputs "bdf")
+                                                  "/share/fonts/misc")))
+                              (mkdir-p otb-font-dir)
+                              (mkdir-p bdf-font-dir)
+                              (mkdir-p ttf-font-dir)
+                              (for-each (lambda (otb)
+                                          (install-file otb otb-font-dir))
+                                        (find-files "." "\\.otb$"))
+                              (for-each (lambda (bdf)
+                                          (install-file bdf bdf-font-dir))
+                                        (find-files "." "\\.bdf$"))
+                              (for-each (lambda (ttf)
+                                          (install-file ttf ttf-font-dir))
+                                        (find-files "." "\\.ttf$"))) #t)))))
+    (home-page "https://github.com/nerdypepper/scientifica")
+    (synopsis "Tall and condensed bitmap font for geeks")
+    (description
+     "@code{scientifica} is largely based on
+@url{https://github.com/romeovs/creep, @code{creep}}, with a number of
+minor tweaks to improve readability (a matter of taste of course).
+Most characters are just 4px wide, which is brilliant for low dpi(90-120) displays.")
+    (license license:silofl1.1)))

base-commit: 7b00b155d8f474d493a22ff7cccbeec311b9bbc8
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#63506] [PATCH] gnu: Add font-scientifica.
  2023-05-14 20:21 [bug#63506] [PATCH] gnu: Add font-scientifica Ahmad Draidi via Guix-patches via
@ 2023-05-15  9:52 ` 宋文武 via Guix-patches via
  2023-05-15  9:57   ` bug#63506: " 宋文武 via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-05-15  9:52 UTC (permalink / raw)
  To: Ahmad Draidi; +Cc: Zhu Zihao, 63506

Ahmad Draidi <a.r.draidi@redscript.org> writes:

> * gnu/packages/fonts.scm (font-scientifica): New variable.

Pushed to master now, thank you!




^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#63506: [PATCH] gnu: Add font-scientifica.
  2023-05-15  9:52 ` 宋文武 via Guix-patches via
@ 2023-05-15  9:57   ` 宋文武 via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-05-15  9:57 UTC (permalink / raw)
  To: Ahmad Draidi; +Cc: 63506-done

Forgot to close the issue :\




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-05-15  9:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-14 20:21 [bug#63506] [PATCH] gnu: Add font-scientifica Ahmad Draidi via Guix-patches via
2023-05-15  9:52 ` 宋文武 via Guix-patches via
2023-05-15  9:57   ` bug#63506: " 宋文武 via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).