* [bug#68013] [PATCH] gnu: fonts: Add font-meslo-lg and font-meslo-lg-dz.
@ 2023-12-24 19:00 lgcoelho--- via Guix-patches via
2024-11-03 22:19 ` [bug#68013] [PATCH v2 0/1] gnu: Add font-meslo-lg Sharlatan Hellseher
0 siblings, 1 reply; 3+ messages in thread
From: lgcoelho--- via Guix-patches via @ 2023-12-24 19:00 UTC (permalink / raw)
To: 68013
[-- Attachment #1: Type: text/html, Size: 193 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-fonts-Add-font-meslo-lg-and-font-meslo-lg-dz.patch --]
[-- Type: text/x-diff; name=0001-gnu-fonts-Add-font-meslo-lg-and-font-meslo-lg-dz.patch, Size: 2492 bytes --]
From 5bffad2dd8ea2934fe9fd880140db5684604675f Mon Sep 17 00:00:00 2001
From: Luis Guilherme Coelho <lgcoelho@disroot.org>
Date: Sun, 24 Dec 2023 15:59:01 -0300
Subject: [PATCH] gnu: fonts: Add font-meslo-lg and font-meslo-lg-dz
---
gnu/packages/fonts.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 1b2bc319f7..a1755b1ead 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -59,6 +59,7 @@
;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2023 chris <chris@bumblehead.com>
;;; Copyright © 2023 Luis Felipe López Acevedo <sirgazil@zoho.com>
+;;; Copyright © 2023 Luis Guilherme Coelho <lgcoelho@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1394,6 +1395,43 @@ (define-public font-adobe-source-serif-pro
Sans Pro family.")
(license license:silofl1.1)))
+(define-public font-meslo-lg
+ (package
+ (name "font-meslo-lg")
+ (version "1.2.1")
+ (source (origin
+ (file-name "font-meslo-lg")
+ (method url-fetch/zipbomb)
+ (uri (string-append
+ "https://github.com/andreberg/Meslo-Font/raw/master/"
+ "dist/v" version "Meslo%20LG%20v" version ".zip"))
+ (sha256
+ (base32
+ "1l08mxlzaz3i5bamnfr49s2k4k23vdm64b8nz2ha33ysimkbgg6h"))))
+ (build-system font-build-system)
+ (native-inputs (list unzip))
+ (home-page "https://github.com/andreberg/Meslo-Font")
+ (synopsis "Font for dyslexics and high readability")
+ (description
+ "Meslo LG is a customized version of Apple’s Menlo-Regular font
+(which is a customized Bitstream Vera Sans Mono).")
+ (license license:silofl1.1)))
+
+(define-public font-meslo-lg-dz
+ (package
+ (inherit font-meslo-lg)
+ (name "font-meslo-lg-dz")
+ (version (package-version font-meslo-lg))
+ (source (origin
+ (file-name "font-meslo-lg-dz")
+ (method url-fetch/zipbomb)
+ (uri (string-append
+ "https://github.com/andreberg/Meslo-Font/raw/master/"
+ "dist/v" version "Meslo%20LG%20DZ%20v" version ".zip"))
+ (sha256
+ (base32
+ "0lnbkrvcpgz9chnvix79j6fiz36wj6n46brb7b1746182rl1l875"))))))
+
(define-public font-microsoft-cascadia
(package
(name "font-microsoft-cascadia")
--
2.41.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#68013] [PATCH v2 0/1] gnu: Add font-meslo-lg.
2023-12-24 19:00 [bug#68013] [PATCH] gnu: fonts: Add font-meslo-lg and font-meslo-lg-dz lgcoelho--- via Guix-patches via
@ 2024-11-03 22:19 ` Sharlatan Hellseher
2024-11-03 22:20 ` [bug#68013] [PATCH v2 1/1] " Sharlatan Hellseher
0 siblings, 1 reply; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-11-03 22:19 UTC (permalink / raw)
To: 68013; +Cc: Sharlatan Hellseher, Zhu Zihao, 宋文武
Hi,
I'm not sure about license here, let's check with team.
I've modify it a litle, v2 includes:
- changes:
- Rebase to latestest master
- Use git tag
- Adjust phases
- Swap license to asl2.0 as seen in README
Luis Guilherme Coelho (1):
gnu: Add font-meslo-lg.
gnu/packages/fonts.scm | 48 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
base-commit: 54f82bcf22178d89140a131332a9e036ac386657
--
2.46.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#68013] [PATCH v2 1/1] gnu: Add font-meslo-lg.
2024-11-03 22:19 ` [bug#68013] [PATCH v2 0/1] gnu: Add font-meslo-lg Sharlatan Hellseher
@ 2024-11-03 22:20 ` Sharlatan Hellseher
0 siblings, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-11-03 22:20 UTC (permalink / raw)
To: 68013
Cc: Luis Guilherme Coelho, Sharlatan Hellseher, Zhu Zihao,
宋文武
From: Luis Guilherme Coelho <lgcoelho@disroot.org>
* gnu/packages/fonts.scm (font-meslo-lg, font-meslo-lg-dz): New variables.
Change-Id: I90ce642c60931c368e70c1d4b4cd57ee4f1e3c4d
Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/fonts.scm | 48 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 65232db3b8..4afd950fc9 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -60,6 +60,7 @@
;;; Copyright © 2023 chris <chris@bumblehead.com>
;;; Copyright © 2023, 2024 Luis Felipe López Acevedo <sirgazil@zoho.com>
;;; Copyright © 2024 Christina O'Donnell <cdo@mutix.org>
+;;; Copyright © 2023 Luis Guilherme Coelho <lgcoelho@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1569,6 +1570,53 @@ (define-public font-adobe-source-serif-pro
Sans Pro family.")
(license license:silofl1.1)))
+(define-public font-meslo-lg
+ (package
+ (name "font-meslo-lg")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/andreberg/Meslo-Font")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1594lxdk6788bb3i3c2fh74z4pwpzcp2r1xl3cz8cz77nrcjkl8m"))))
+ (build-system font-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack chdir
+ (lambda* (#:key source #:allow-other-keys)
+ (chdir (string-append "dist/v" #$version))
+ (invoke "unzip"
+ (string-append "Meslo LG v" #$version ".zip")))))))
+ (native-inputs
+ (list unzip))
+ (home-page "https://github.com/andreberg/Meslo-Font")
+ (synopsis "Font for dyslexics and high readability")
+ (description
+ "Meslo LG is a customized version of Apple’s Menlo-Regular font
+(which is a customized Bitstream Vera Sans Mono).")
+ (license license:asl2.0)))
+
+(define-public font-meslo-lg-dz
+ (package
+ (inherit font-meslo-lg)
+ (name "font-meslo-lg-dz")
+ (version "1.2.1")
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack chdir
+ (lambda* (#:key source #:allow-other-keys)
+ (chdir (string-append "dist/v" #$version))
+ (invoke "unzip"
+ (string-append "Meslo LG DZ v" #$version ".zip")))))))))
+
(define-public font-microsoft-cascadia
(package
(name "font-microsoft-cascadia")
--
2.46.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-03 22:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-24 19:00 [bug#68013] [PATCH] gnu: fonts: Add font-meslo-lg and font-meslo-lg-dz lgcoelho--- via Guix-patches via
2024-11-03 22:19 ` [bug#68013] [PATCH v2 0/1] gnu: Add font-meslo-lg Sharlatan Hellseher
2024-11-03 22:20 ` [bug#68013] [PATCH v2 1/1] " Sharlatan Hellseher
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.