mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
gnu: Add Xournal.
* gnu/packages/pdf.scm (xournal): New variable.
This commit is contained in:
parent
6d5e7ef3ae
commit
7ad608e49d
1 changed files with 30 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2014 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2014, 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -33,6 +33,7 @@ (define-module (gnu packages pdf)
|
|||
#: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 @@ (define-public qpdf
|
|||
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+)))
|
||||
|
|
Loading…
Reference in a new issue