unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/7] gnu: Add girara.
@ 2015-03-01 23:47 Paul van der Walt
  2015-03-01 23:47 ` [PATCH 2/7] gnu: Add djvulibre Paul van der Walt
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Paul van der Walt @ 2015-03-01 23:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gtk.scm (girara): Add variable.
---
 gnu/packages/gtk.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 81f912e..2b62b99 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
+;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -28,6 +29,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
   #:use-module (guix build-system waf)
+  #:use-module (gnu packages gettext)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages ghostscript)
@@ -770,3 +772,45 @@ extensive documentation, including API reference and a tutorial.")
 targetted at GTK 2.x, and can be used in conjunction with gnome-python to
 write GNOME applications.")
     (license license:lgpl2.1+)))
+
+(define-public girara
+  (package
+    (name "girara")
+    (version "0.2.3")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "https://pwmt.org/projects/girara/download/girara-"
+                              version ".tar.gz"))
+              (sha256
+               (base32
+                "1phfmqp8y17zcy9yi6pm2f80x8ldbk60iswpm4bmjz5217jwqzxh"))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (arguments
+     `(#:make-flags
+       `(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
+         "COLOR=0" "CC=gcc")
+       #:test-target "test"
+       #:phases
+       (alist-delete
+        'check
+        (alist-delete
+         'configure
+         %standard-phases))))
+    (inputs `(("gtk+" ,gtk+)
+              ("glib" ,glib)
+              ("gettext" ,gnu-gettext)))
+    (build-system gnu-build-system)
+    (home-page "https://pwmt.org/projects/girara/")
+    (synopsis "library for minimalistic gtk+3 user interfaces")
+    (description "girara is a library that implements a user interface that
+focuses on simplicity and minimalism. Currently based on GTK+, a
+cross-platform widget toolkit, it provides an interface that focuses on three
+main components: A so-called view widget that represents the actual
+application, an input bar that is used to execute commands of the
+application and the status bar which provides the user with current
+information. girara was designed to replace and enhance the user interface
+that is used by zathura and jumanji and other features that those applications
+share.")
+    (license license:zlib)))
-- 
2.3.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-03-02  9:32 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-01 23:47 [PATCH 1/7] gnu: Add girara Paul van der Walt
2015-03-01 23:47 ` [PATCH 2/7] gnu: Add djvulibre Paul van der Walt
2015-03-02  5:27   ` 宋文武
2015-03-02  5:49     ` Mark H Weaver
2015-03-02  9:31     ` Ludovic Courtès
2015-03-01 23:47 ` [PATCH 3/7] gnu: Add zathura Paul van der Walt
2015-03-01 23:47 ` [PATCH 4/7] gnu: Add zathura PDF plugin Paul van der Walt
2015-03-01 23:47 ` [PATCH 5/7] gnu: Add zathura DjVu plugin Paul van der Walt
2015-03-01 23:47 ` [PATCH 6/7] gnu: Add zathura postscript plugin Paul van der Walt
2015-03-01 23:47 ` [PATCH 7/7] gnu: Add zathura comicbook plugin Paul van der Walt
2015-03-02  5:55 ` [PATCH 1/7] gnu: Add girara 宋文武

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).