From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50479) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifWrQ-0008RT-US for guix-patches@gnu.org; Thu, 12 Dec 2019 17:23:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ifWrO-0002ao-GA for guix-patches@gnu.org; Thu, 12 Dec 2019 17:23:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:55029) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ifWrO-0002aQ-Co for guix-patches@gnu.org; Thu, 12 Dec 2019 17:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ifWrO-0001wZ-7J for guix-patches@gnu.org; Thu, 12 Dec 2019 17:23:02 -0500 Subject: [bug#38584] [PATCH] gnu: Add papirus-icon-theme. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38726) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifWqK-000744-9g for guix-patches@gnu.org; Thu, 12 Dec 2019 17:21:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ifWqI-0000kZ-KK for guix-patches@gnu.org; Thu, 12 Dec 2019 17:21:55 -0500 Received: from confino.investici.org ([2a00:c38:11e:ffff::a020]:31285) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ifWqI-0000Ly-46 for guix-patches@gnu.org; Thu, 12 Dec 2019 17:21:54 -0500 From: Giacomo Leidi Date: Thu, 12 Dec 2019 23:21:35 +0100 Message-Id: <20191212222135.9879-1-goodoldpaul@autistici.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38584@debbugs.gnu.org Cc: Giacomo Leidi * gnu/packages/gnome-xyz.scm (papirus-icon-theme): New variable. --- gnu/packages/gnome-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index d05bdf0ac0..00ad701ad8 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -213,3 +213,37 @@ It uses ES6 syntax and claims to be more actively ma= intained than others.") dark elements. It supports GNOME, Unity, Xfce, and Openbox.") (home-page "https://numixproject.github.io") (license license:gpl3+))) + +(define-public papirus-icon-theme + (let ((version "0.0.0") ;; The package does not use semver + (revision "0") + (tag "20191201")) + (package + (name "papirus-icon-theme") + (version (git-version version revision tag)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PapirusDevelopmentTeam/papirus-i= con-theme.git") + (commit tag))) + (sha256 + (base32 + "0lnz1kmz28xh1f4slbsx7ycji5hgszyiyprbf5w5fbjhvi5gzw1h")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:make-flags (list (string-append "PREFIX=3D" (assoc-ref %outputs= "out"))) + #:phases + (modify-phases %standard-phases + (delete 'bootstrap) + (delete 'configure) + (delete 'build)))) + (native-inputs + `(("gtk+:bin" ,gtk+ "bin"))) + (home-page "https://git.io/papirus-icon-theme") + (synopsis "Fork of Paper icon theme with a lot of new icons and a = few extras") + (description "Papirus is a fork of the icon theme Paper with a lot= of new icons +and a few extra features.") + (license license:gpl3)))) --=20 2.24.1