guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add GHex.


From: Ludovic Courtès
Subject: 02/02: gnu: Add GHex.
Date: Sat, 5 May 2018 16:52:32 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 312afa7d563302da41ca7be862c7ce2e00acc7b5
Author: Ludovic Courtès <address@hidden>
Date:   Tue May 1 09:50:57 2018 -0500

    gnu: Add GHex.
    
    * gnu/packages/gnome.scm (ghex): New variable.
    
    Co-authored-by: Jovany Leandro G.C <address@hidden>.
---
 gnu/packages/gnome.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b8beda3..b5bde0b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7259,3 +7259,32 @@ prevention of repetitive strain injury (RSI).  The 
program frequently alerts
 you to take micro-pauses, rest breaks and restricts you to your daily limit")
       (home-page "http://www.workrave.org";)
       (license license:gpl3+))))
+
+(define-public ghex
+  (package
+    (name "ghex")
+    (version "3.18.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1lq8920ad2chi9ibmyq0x9hg9yk63b0kdbzid03w42cwdzw50x66"))))
+    (build-system glib-or-gtk-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("gnome-common" ,gnome-common)
+       ("which" ,which)
+       ("intltool" ,intltool)
+       ("yelp-tools" ,yelp-tools)
+       ("desktop-file-utils" ,desktop-file-utils))) ;for 
'desktop-file-validate'
+    (inputs
+     `(("atk" ,atk)
+       ("gtk" ,gtk+)))
+    (synopsis "GNOME hexadecimal editor")
+    (description "The GHex program can view and edit files in two ways:
+hexadecimal or ASCII.  It is useful for editing binary files in general.")
+    (home-page "https://wiki.gnome.org/Apps/Ghex";)
+    (license license:gpl2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]