unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60440] [PATCH 1/3] gnu: Add flat-remix-icon-theme.
@ 2022-12-30 23:15 Sughosha via Guix-patches via
  2022-12-30 23:17 ` [bug#60440] [PATCH 2/3] gnu: Add flat-remix-gtk-theme Sughosha via Guix-patches via
  2022-12-30 23:18 ` [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme Sughosha via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2022-12-30 23:15 UTC (permalink / raw)
  To: 60440

* gnu/packages/gnome-xyz.scm (flat-remix-icon-theme): New public variable.
---
 gnu/packages/gnome-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 62ffddbb44..8734d087a8 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -225,6 +225,34 @@ (define-public papirus-icon-theme
 and a few extra features.")
     (license license:gpl3)))
 
+(define-public flat-remix-icon-theme
+  (package
+    (name "flat-remix-icon-theme")
+    (version "20220525")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+          (git-reference
+            (url "https://github.com/daniruiz/flat-remix")
+            (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "0ygazxccqf7hn1hxnf1mmsp17gm1m4hpcandfz9v5ijrgkd1m596"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+        (modify-phases %standard-phases
+          (delete 'configure))))
+    (home-page "https://drasite.com/flat-remix")
+    (synopsis "Icon theme with material design")
+    (description "Flat Remix is an icon theme inspired by material design.  It
+is mostly flat using a colorful palette with some shadows, highlights, and
+gradients for some depth.")
+    (license license:gpl3+)))
+
 (define-public gnome-plots
   (package
     (name "gnome-plots")
-- 
2.38.1





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

* [bug#60440] [PATCH 2/3] gnu: Add flat-remix-gtk-theme.
  2022-12-30 23:15 [bug#60440] [PATCH 1/3] gnu: Add flat-remix-icon-theme Sughosha via Guix-patches via
@ 2022-12-30 23:17 ` Sughosha via Guix-patches via
  2022-12-30 23:18 ` [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme Sughosha via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2022-12-30 23:17 UTC (permalink / raw)
  To: 60440@debbugs.gnu.org

* gnu/packages/gnome-xyz.scm (flat-remix-gtk-theme): New public variable.
---
 gnu/packages/gnome-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 8734d087a8..30249e4c8b 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -253,6 +253,34 @@ (define-public flat-remix-icon-theme
 gradients for some depth.")
     (license license:gpl3+)))
 
+(define-public flat-remix-gtk-theme
+  (package
+    (name "flat-remix-gtk-theme")
+    (version "20220627")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+          (git-reference
+            (url "https://github.com/daniruiz/flat-remix-gtk")
+            (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "1kwahlrcm9rfsrd97q9lsbfz5390qafwbv78zl6j2vqgqnxhpwng"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+        (modify-phases %standard-phases
+          (delete 'configure))))
+    (home-page "https://drasite.com/flat-remix-gtk")
+    (synopsis "GTK application theme with material design")
+    (description "Flat Remix GTK is a GTK application theme inspired by
+material design.  It is mostly flat using a colorful palette with some shadows,
+highlights, and gradients for some depth.")
+    (license license:gpl3+)))
+
 (define-public gnome-plots
   (package
     (name "gnome-plots")
-- 
2.38.1





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

* [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme.
  2022-12-30 23:15 [bug#60440] [PATCH 1/3] gnu: Add flat-remix-icon-theme Sughosha via Guix-patches via
  2022-12-30 23:17 ` [bug#60440] [PATCH 2/3] gnu: Add flat-remix-gtk-theme Sughosha via Guix-patches via
@ 2022-12-30 23:18 ` Sughosha via Guix-patches via
  2023-03-01 15:27   ` bug#60440: " Christopher Baines
  1 sibling, 1 reply; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2022-12-30 23:18 UTC (permalink / raw)
  To: 60440@debbugs.gnu.org

* gnu/packages/gnome-xyz.scm (flat-remix-gnome-theme): New public variable.
---
 gnu/packages/gnome-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 30249e4c8b..45c4028e07 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -281,6 +281,33 @@ (define-public flat-remix-gtk-theme
 highlights, and gradients for some depth.")
     (license license:gpl3+)))
 
+(define-public flat-remix-gnome-theme
+  (package
+    (name "flat-remix-gnome-theme")
+    (version "20221107-1")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+          (git-reference
+            (url "https://github.com/daniruiz/flat-remix-gnome")
+            ;; This commit adds GtkSourceView 5 theme, for GNOME Text Editor.
+            (commit "b5616efc515e9f1417436e67d94718db7529a2ba")))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "10fgdz8hz8rd7aj4vb3bvl8khzb2fvaia7n00gi0x19yvnnh36pr"))))
+    (build-system copy-build-system)
+    (arguments
+     `(#:install-plan
+       `(("share" "/")
+         ("themes" "/share/"))))
+    (home-page "https://drasite.com/flat-remix-gnome")
+    (synopsis "GNOME shell theme with material design")
+    (description "Flat Remix  GNOME is a GNOME shell theme inspired by material
+design.  It is mostly flat using a colorful palette with some shadows,
+highlights, and gradients for some depth.")
+    (license license:gpl3+)))
+
 (define-public gnome-plots
   (package
     (name "gnome-plots")
-- 
2.38.1





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

* bug#60440: [PATCH 3/3] gnu: Add flat-remix-gnome-theme.
  2022-12-30 23:18 ` [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme Sughosha via Guix-patches via
@ 2023-03-01 15:27   ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2023-03-01 15:27 UTC (permalink / raw)
  To: Sughosha; +Cc: 60440-done, guix-patches

[-- Attachment #1: Type: text/plain, Size: 98 bytes --]

Thanks, I've pushed these 3 patches to master as
fbcc42ad6c22ef7257daede968ff2b8d41bdd30d.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2023-03-01 15:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-30 23:15 [bug#60440] [PATCH 1/3] gnu: Add flat-remix-icon-theme Sughosha via Guix-patches via
2022-12-30 23:17 ` [bug#60440] [PATCH 2/3] gnu: Add flat-remix-gtk-theme Sughosha via Guix-patches via
2022-12-30 23:18 ` [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme Sughosha via Guix-patches via
2023-03-01 15:27   ` bug#60440: " Christopher Baines

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).