gnu: guile-syntax-highlight: Update to 0.1.

* gnu/packages/guile.scm (guile-syntax-highlight): Update to 0.1.
This commit is contained in:
David Thompson 2018-03-10 21:30:35 -05:00
parent 440b162900
commit 3c90c7ae37
No known key found for this signature in database
GPG Key ID: 8328C7470FF1D807
1 changed files with 19 additions and 29 deletions

View File

@ -2008,31 +2008,21 @@ manipulate repositories of the Git version control system.")
(package-for-guile-2.0 guile-git)) (package-for-guile-2.0 guile-git))
(define-public guile-syntax-highlight (define-public guile-syntax-highlight
(let ((commit "a047675e66861b647426372aa2ba7820f749616d")
(revision "0"))
(package (package
(name "guile-syntax-highlight") (name "guile-syntax-highlight")
(version (string-append "0.0." revision "." (version "0.1")
(string-take commit 7)))
(source (origin (source (origin
(method git-fetch) (method url-fetch)
(uri (git-reference (uri (string-append "https://files.dthompson.us/"
(url "git://dthompson.us/guile-syntax-highlight.git") "guile-syntax-highlight/"
(commit commit))) "guile-syntax-highlight-"
(file-name (string-append name "-" version "-checkout")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1zjr6sg3n7xbdsliy45i39dqanxvcms58ayx36wxrz72zpq58vq3")))) "1p771kq15x83483m23bhah1sz6vkalg3drm7x279f4j1cxligkzi"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(add-after 'unpack 'bootstrap
(lambda _
(zero? (system* "sh" "bootstrap")))))))
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("pkg-config" ,pkg-config)))
("automake" ,automake)
("pkg-config" ,pkg-config)))
(inputs (inputs
`(("guile" ,guile-2.2))) `(("guile" ,guile-2.2)))
(synopsis "General-purpose syntax highlighter for GNU Guile") (synopsis "General-purpose syntax highlighter for GNU Guile")
@ -2040,8 +2030,8 @@ manipulate repositories of the Git version control system.")
highlighting library for GNU Guile. It can parse code written in various highlighting library for GNU Guile. It can parse code written in various
programming languages into a simple s-expression that can be converted to programming languages into a simple s-expression that can be converted to
HTML (via SXML) or any other format for rendering.") HTML (via SXML) or any other format for rendering.")
(home-page "http://dthompson.us/software/guile-syntax-highlight") (home-page "http://dthompson.us/projects/guile-syntax-highlight.html")
(license license:lgpl3+)))) (license license:lgpl3+)))
(define-public guile-sjson (define-public guile-sjson
(package (package