diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-02-25 01:17:15 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-25 23:24:31 +0000 |
| commit | 8d062a9f0e290cbe553b4bffa31a98ef25500c63 (patch) | |
| tree | a3a4ec3db57286a00167055baa6854bf7a190e54 /gnu | |
| parent | 0956abe376f7dcdb7a1cfbdc979d4a169b9d9b25 (diff) | |
gnu: paps: Update to 0.8.0-0.199b478.
* gnu/packages/pdf.scm (paps): Update to 0.8.0-0.199b478.
[source]: Switch to git-fetch.
[build-system]: Switch to meson-build-system.
[inputs]: Add libpaper.
[native-inputs]: Remove intltool. Add fmt, and gettext-minimal.
Fixes: guix/guix#6686
Merges: https://codeberg.org/guix/guix/pulls/6696
Change-Id: I442cfe5c687e807fd78f4a94da25679eb915bf8d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/pdf.scm | 45 |
1 files changed, 25 insertions, 20 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 46032fcb1bf..51239231442 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -1873,27 +1873,32 @@ presentation. The input files processed by pdfpc are PDF documents.") (license license:gpl3+))) (define-public paps - (package - (name "paps") - (version "0.7.1") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/dov/paps/releases/download/v" - version "/paps-" version ".tar.gz")) - (sha256 - (base32 "1z1w1fg2bvb8p92n1jlpqp3n9mq42szb2mqhh4xqmmnmfcdkpi9s")))) - (build-system gnu-build-system) - (inputs - (list pango)) - (native-inputs - (list intltool pkg-config)) - (home-page "https://github.com/dov/paps") - (synopsis "Pango to PostScript converter") - (description - "Paps reads a UTF-8 encoded file and generates a PostScript language + ;; Fails to build in lastest release. + (let ((commit "199b478ca3884df4c0786948aae09c7928c6498f") + (revision "0")) + (package + (name "paps") + (version (git-version "0.8.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dov/paps") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p0sa36h98jkq54hzqax7c97cxvx0f2sslrvccp3f1m6sp5f165k")))) + (build-system meson-build-system) + (inputs + (list libpaper pango)) + (native-inputs + (list fmt gettext-minimal pkg-config)) + (home-page "https://github.com/dov/paps") + (synopsis "Pango to PostScript converter") + (description + "Paps reads a UTF-8 encoded file and generates a PostScript language rendering of the file through the Pango Cairo back end.") - (license license:lgpl2.0+))) + (license license:lgpl2.0+)))) (define-public stapler (let ((commit "23eb07270dd3362a78064e721474b17951daeb88") |
