guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add paps.


From: guix-commits
Subject: 01/01: gnu: Add paps.
Date: Sat, 5 Jan 2019 11:25:29 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a773f141cbe501471eeb388526407b0cf6c489d8
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Jan 5 17:24:38 2019 +0100

    gnu: Add paps.
    
    * gnu/packages/pdf.scm (paps): New variable.
---
 gnu/packages/pdf.scm | 27 ++++++++++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 64bfda4..a881fe3 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, 2016 Andreas Enge <address@hidden>
 ;;; Copyright © 2014 Mark H Weaver <address@hidden>
-;;; Copyright © 2014, 2015, 2016, 2018 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2014, 2015, 2016, 2018, 2019 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2015 Paul van der Walt <address@hidden>
 ;;; Copyright © 2016 Roel Janssen <address@hidden>
 ;;; Copyright © 2016 Nils Gillmann <address@hidden>
@@ -1075,3 +1075,28 @@ more sophisticated overview on the other one providing 
information like a
 picture of the next slide, as well as the left over time till the end of the
 presentation.  The input files processed by pdfpc are PDF documents.")
     (license license:gpl2+)))
+
+(define-public paps
+  (package
+    (name "paps")
+    (version "0.6.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/paps/paps/" version "/"
+                           "paps-" version ".tar.gz"))
+       (sha256
+        (base32
+         "080ahnyvq918m8ahq8bg9qvgzlv4k0jgcsdqhrwjzppclx74q8fv"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("pango" ,pango)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://paps.sourceforge.net/";)
+    (synopsis "Pango to PostScript converter")
+    (description
+     "Paps reads a UTF-8 encoded file and generates a PostScript language
+rendering of the file.  The rendering is done by creating outline curves
+through the Pango @code{ft2} backend.")
+    (license license:lgpl2.0+)))



reply via email to

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