diff mbox series

[bug#38763] closed (Re: [bug#38763] gnome-themes-extra)

Message ID fdc8201ffc1816cf28e250400a3c6ce37c4ecfcc.camel@disroot.org
State Accepted
Headers show
Series [bug#38763] closed (Re: [bug#38763] gnome-themes-extra) | expand

Commit Message

Raghav Gururajan Dec. 29, 2019, 4:51 p.m. UTC
Hello Guix!

Small change to the patch. I had to add build arguments. Please repush
using the patch attached.

Regards,
RG.
diff mbox series

Patch

From c3482231d40034e58ad875813f9f655a32ccc2d2 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Sun, 29 Dec 2019 11:45:24 -0500
Subject: [PATCH] gnu: gnome-themes-extra: Add build arguments.

* gnu/packages/gnome.scm (gnome-themes-extra). Add build arguments.
---
 gnu/packages/gnome.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4ad14caf7b..e0712bf99a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9091,6 +9091,12 @@  and a high score table.")
         (base32
          "06aqg9asq2vqi9wr29bs4v8z2bf4manhbhfghf4nvw01y2zs0jvw"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags
+       ;; Don't create 'icon-theme.cache'.
+       (let* ((coreutils (assoc-ref %build-inputs "coreutils"))
+              (true      (string-append coreutils "/bin/true")))
+         (list (string-append "GTK_UPDATE_ICON_CACHE=" true)))))
     (native-inputs
      `(("glib:bin" ,glib "bin")
        ("intltool" ,intltool)
-- 
2.24.1