[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight
From: |
Ludovic Courtès |
Subject: |
Re: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight |
Date: |
Sat, 08 Mar 2014 00:31:34 +0100 |
User-agent: |
Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) |
Eric Bavier <address@hidden> skribis:
> +(define-public source-highlight
> + (package
> + (name "source-highlight")
> + (version "3.1.7")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://gnu/src-highlite/source-highlight-"
> + version ".tar.gz"))
> + (sha256
> + (base32
> + "1s49ld8cnpzhhwq0r7s0sfm3cg3nhhm0wla27lwraifrrl3y1cp1"))
> + (patches
> + (list (search-patch
> + ;; Patch submitted as Savannah item #41786
> + "source-highlight-regexrange-test.patch")))))
> + (build-system gnu-build-system)
> + ;; The ctags that comes with emacs does not support the --excmd options,
> + ;; so can't be used
> + (inputs
> + `(("boost" ,boost-1.54)))
I just realized that ‘boost-1.54’ is unbound. Is that required, or does
that work with 1.55 (aka. ‘boost’)?
TIA,
Ludo’.