From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDXfO-0000iw-5E for guix-patches@gnu.org; Tue, 01 May 2018 11:58:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDXfG-0001Pf-JI for guix-patches@gnu.org; Tue, 01 May 2018 11:58:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38031) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDXfG-0001PM-E2 for guix-patches@gnu.org; Tue, 01 May 2018 11:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDXfG-0006L7-3P for guix-patches@gnu.org; Tue, 01 May 2018 11:58:02 -0400 Subject: [bug#31334] [PATCH] gnome: add ghex Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDXdV-0007u4-Nq for guix-patches@gnu.org; Tue, 01 May 2018 11:57:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDXbs-0007BU-RF for guix-patches@gnu.org; Tue, 01 May 2018 11:56:13 -0400 Received: from mx1.riseup.net ([198.252.153.129]:57490) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fDXbs-0007A3-D0 for guix-patches@gnu.org; Tue, 01 May 2018 11:54:32 -0400 Received: from cotinga.riseup.net (cotinga-pn.riseup.net [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id A43941A0174 for ; Tue, 1 May 2018 08:54:30 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by cotinga.riseup.net with ESMTPSA id 3D80FA6796 for ; Tue, 1 May 2018 08:54:30 -0700 (PDT) Date: Tue, 1 May 2018 09:53:55 -0500 From: "Jovany Leandro G.C" Message-ID: <20180501095355.251d430d@riseup.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII 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: 31334@debbugs.gnu.org =46rom 476080edc1a77de4380b3c08d3d82b6d06b5107b Mon Sep 17 00:00:00 2001 From: "Jovany Leandro G.C" Date: Tue, 1 May 2018 09:50:57 -0500 Subject: [PATCH] gnome: add ghex --- gnu/packages/gnome.scm | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index beaf9aa8f..83cb23b46 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7259,3 +7259,47 @@ mp3, Ogg Vorbis and FLAC") you to take micro-pauses, rest breaks and restricts you to your daily lim= it") (home-page "http://www.workrave.org") (license gpl3+)))) + +(define-public ghex + (let ((commit "6615481532da7d378ef79b0f498ecc43dd0e1d40")) + (package + (name "ghex") + (version "3.18.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "git://git.gnome.org/ghex") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1j0sp9wsrx9d4qfisqzjsgvsfhc3q0zp6211kjx7y2kiv9vi8s2v"))= )) + (build-system glib-or-gtk-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'autogen + (lambda _ + (setenv "NOCONFIGURE" "1") + (zero? (system* "sh" "autogen.sh")))) + (replace 'check + (lambda _ #t))))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("gnome-common" ,gnome-common) + ("which" ,which) + ("automake" ,automake) + ("libtool" ,libtool) + ("autoconf" ,autoconf-wrapper) + ("intltool" ,intltool) + ("yelp-tools" ,yelp-tools) + ("gettext" ,gettext-minimal) + ("file" ,file))) + (inputs + `(("atk" ,atk) + ("gtk" ,gtk+))) + (synopsis "GNOME Hex editor for files") + (description "GNOME Hex editor for files + The GHex program can view and edit files in two ways, hex or ascii. Good + for editing saved game files.") + (home-page "https://wiki.gnome.org/Apps/Ghex") + (license license:gpl2)))) --=20 2.17.0