GNU bug report logs - #60440
[PATCH 1/3] gnu: Add flat-remix-icon-theme.

Previous Next

Package: guix-patches;

Reported by: Sughosha <Sughosha <at> proton.me>

Date: Fri, 30 Dec 2022 23:16:01 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60440 in the body.
You can then email your comments to 60440 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60440; Package guix-patches. (Fri, 30 Dec 2022 23:16:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sughosha <Sughosha <at> proton.me>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 30 Dec 2022 23:16:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sughosha <Sughosha <at> proton.me>
To: "guix-patches <at> gnu.org" <guix-patches <at> gnu.org>
Subject: [PATCH 1/3] gnu: Add flat-remix-icon-theme.
Date: Fri, 30 Dec 2022 23:15:11 +0000
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#60440; Package guix-patches. (Fri, 30 Dec 2022 23:18:01 GMT) Full text and rfc822 format available.

Message #8 received at 60440 <at> debbugs.gnu.org (full text, mbox):

From: Sughosha <Sughosha <at> proton.me>
To: "60440 <at> debbugs.gnu.org" <60440 <at> debbugs.gnu.org>
Subject: [PATCH 2/3] gnu: Add flat-remix-gtk-theme.
Date: Fri, 30 Dec 2022 23:17:23 +0000
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#60440; Package guix-patches. (Fri, 30 Dec 2022 23:19:01 GMT) Full text and rfc822 format available.

Message #11 received at 60440 <at> debbugs.gnu.org (full text, mbox):

From: Sughosha <Sughosha <at> proton.me>
To: "60440 <at> debbugs.gnu.org" <60440 <at> debbugs.gnu.org>
Subject: [PATCH 3/3] gnu: Add flat-remix-gnome-theme.
Date: Fri, 30 Dec 2022 23:18:05 +0000
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#60440; Package guix-patches. (Wed, 01 Mar 2023 15:28:02 GMT) Full text and rfc822 format available.

Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Sughosha <Sughosha <at> proton.me>
Cc: 60440-done <at> debbugs.gnu.org, guix-patches <at> gnu.org
Subject: Re: [bug#60440] [PATCH 3/3] gnu: Add flat-remix-gnome-theme.
Date: Wed, 01 Mar 2023 15:27:09 +0000
[Message part 1 (text/plain, inline)]
Thanks, I've pushed these 3 patches to master as
fbcc42ad6c22ef7257daede968ff2b8d41bdd30d.

Chris
[signature.asc (application/pgp-signature, inline)]

Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Wed, 01 Mar 2023 15:28:02 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <Sughosha <at> proton.me>:
bug acknowledged by developer. (Wed, 01 Mar 2023 15:28:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 30 Mar 2023 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 21 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.