From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 3/3] gnu: Add arc-icon-theme. Date: Tue, 7 Jun 2016 08:35:55 -0400 Message-ID: <20160607123555.14504-3-dthompson2@worcester.edu> References: <20160607123555.14504-1-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGEz-0004YN-TE for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAGEw-0006ja-82 for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:17 -0400 Received: from mail-qk0-x232.google.com ([2607:f8b0:400d:c09::232]:32901) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGEw-0006jU-42 for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:14 -0400 Received: by mail-qk0-x232.google.com with SMTP id u63so22343985qkh.0 for ; Tue, 07 Jun 2016 05:36:14 -0700 (PDT) In-Reply-To: <20160607123555.14504-1-dthompson2@worcester.edu> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/gnome.scm (arc-icon-theme): New variable. --- gnu/packages/gnome.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2ce1f18..a81dd0e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5250,3 +5250,36 @@ like Gnome, Unity, Budgie, Pantheon, XFCE, Mate, etc.") simple and consistent.") (home-page "http://snwh.org/moka") (license license:gpl3+))) + +(define-public arc-icon-theme + (package + (name "arc-icon-theme") + (version "20160605") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/horst3180/arc-icon-theme" + "/archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1npf0ki0j0llrw9wbffhxxa1cdms0q7b8xlg9m943dd9g7pgdm2p")))) + (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'bootstrap + (lambda _ + (zero? (system* "autoreconf" "-vif"))))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake))) + ;; When Arc is missing an icon, it looks in the Moka icon theme for it. + (propagated-inputs + `(("moka-icon-theme" ,moka-icon-theme))) + (synopsis "Arc icon theme") + (description "The Arc icon theme provides a set of icons matching the +style of the Arc GTK theme. Icons missing from the Arc theme are provided by +the Moka icon theme.") + (home-page "https://github.com/horst3180/arc-icon-theme") + ;; No "or later" language found. + (license license:gpl3))) -- 2.8.3