From a773f141cbe501471eeb388526407b0cf6c489d8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 5 Jan 2019 17:24:38 +0100 Subject: gnu: Add paps. * gnu/packages/pdf.scm (paps): New variable. --- gnu/packages/pdf.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 64bfda489e..a881fe34e1 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 ;;; Copyright © 2014 Mark H Weaver -;;; Copyright © 2014, 2015, 2016, 2018 Ricardo Wurmus +;;; Copyright © 2014, 2015, 2016, 2018, 2019 Ricardo Wurmus ;;; Copyright © 2015 Paul van der Walt ;;; Copyright © 2016 Roel Janssen ;;; Copyright © 2016 Nils Gillmann @@ -1075,3 +1075,28 @@ (define-public pdfpc 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+))) -- cgit v1.2.3