From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58775) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1in70l-0001iL-LD for guix-patches@gnu.org; Thu, 02 Jan 2020 15:24:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1in70k-0001yh-IC for guix-patches@gnu.org; Thu, 02 Jan 2020 15:24:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:34124) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1in70k-0001yY-FB for guix-patches@gnu.org; Thu, 02 Jan 2020 15:24:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1in70k-0007Aq-BH for guix-patches@gnu.org; Thu, 02 Jan 2020 15:24:02 -0500 Subject: [bug#38877] [PATCH] gnu: Add xcur2png. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58750) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1in70f-0001hD-Lq for guix-patches@gnu.org; Thu, 02 Jan 2020 15:23:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1in70d-0001sY-SK for guix-patches@gnu.org; Thu, 02 Jan 2020 15:23:57 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:9167) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1in70d-0001i3-0j for guix-patches@gnu.org; Thu, 02 Jan 2020 15:23:55 -0500 Received: from localhost.localdomain (193-80-82-122.hdsl.highway.telekom.at [193.80.82.122]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 47pfcx20PWz1LBSJ for ; Thu, 2 Jan 2020 21:23:44 +0100 (CET) From: Leo Prikler Date: Thu, 2 Jan 2020 21:23:36 +0100 Message-Id: <20200102202336.20617-1-leo.prikler@student.tugraz.at> 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: 38877@debbugs.gnu.org * gnu/packages/xorg.scm (xcur2png): New variable. --- gnu/packages/xorg.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index fda61aff67..1c21a1cf86 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6425,3 +6425,29 @@ Thai).") ;; by simple permissive licenses. See the 'COPYRIGHT' file. (license (list license:gpl2+ license:expat)))) + +(define-public xcur2png + (package + (name "xcur2png") + (version "0.7.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eworm-de/xcur2png.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0858wn2p14bxpv9lvaz2bz1rk6zk0g8zgxf8iy595m8fqv4q2fya"))= )) + (build-system gnu-build-system) + (synopsis "Decode X cursors") + (description + "xcur2png is a program decomposes an X cursor into a set of PNG ima= ges and +a configuration file reusable by xcursorgen.") + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libpng" ,libpng) + ("libxcursor" ,libxcursor))) + (home-page "https://github.com/eworm-de/xcur2png") + (license license:gpl3+))) --=20 2.24.1