guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add Xournal.


From: Ricardo Wurmus
Subject: 01/01: gnu: Add Xournal.
Date: Tue, 24 Feb 2015 20:27:07 +0000

rekado pushed a commit to branch master
in repository guix.

commit 7ad608e49d41447e106de4827336c606d4e8d4c8
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Feb 24 20:09:24 2015 +0100

    gnu: Add Xournal.
    
    * gnu/packages/pdf.scm (xournal): New variable.
---
 gnu/packages/pdf.scm |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 1ce4c0c..7b4f2ab 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2015 Andreas Enge <address@hidden>
 ;;; Copyright © 2014 Mark H Weaver <address@hidden>
-;;; Copyright © 2014 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2014, 2015 Ricardo Wurmus <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -33,6 +33,7 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages openssl)
   #:use-module (gnu packages xorg)
+  #:use-module (gnu packages gnome)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages lua)
@@ -281,3 +282,31 @@ manipulate the list of pages in a PDF file.  It is not a 
PDF viewer or a
 program capable of converting PDF into other formats.")
    (license license:clarified-artistic)
    (home-page "http://qpdf.sourceforge.net/";)))
+
+(define-public xournal
+  (package
+    (name "xournal")
+    (version "0.4.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/xournal/xournal-"
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "0c7gjcqhygiyp0ypaipdaxgkbivg6q45vhsj8v5jsi9nh6iqff13"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk" ,gtk+-2)
+       ("pango" ,pango)
+       ("poppler" ,poppler)
+       ("glib" ,glib)
+       ("libgnomecanvas" ,libgnomecanvas)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://xournal.sourceforge.net/";)
+    (synopsis "Notetaking using a stylus")
+    (description
+     "Xournal is an application for notetaking, sketching, keeping a journal
+using a stylus.")
+    (license license:gpl2+)))



reply via email to

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