gnu: haunt: Update to 0.2.
* gnu/packages/guile.scm (haunt): Update to 0.2. [native-inputs]: Add pkg-config and texinfo. [propagated-inputs]: Add guile-reader.
This commit is contained in:
parent
76e6e663f5
commit
4960beaa23
|
@ -712,14 +712,14 @@ Guile's foreign function interface.")
|
||||||
(define-public haunt
|
(define-public haunt
|
||||||
(package
|
(package
|
||||||
(name "haunt")
|
(name "haunt")
|
||||||
(version "0.1")
|
(version "0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://files.dthompson.us/haunt/haunt-"
|
(uri (string-append "https://files.dthompson.us/haunt/haunt-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x"))))
|
"1id83n8fs7jxys1d8jy70vylg8gzcvlw1y7hb41y3qxv5zi4671m"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((ice-9 match) (ice-9 ftw)
|
`(#:modules ((ice-9 match) (ice-9 ftw)
|
||||||
|
@ -743,8 +743,13 @@ Guile's foreign function interface.")
|
||||||
`("GUILE_LOAD_COMPILED_PATH" ":" prefix
|
`("GUILE_LOAD_COMPILED_PATH" ":" prefix
|
||||||
(,modules)))
|
(,modules)))
|
||||||
#t)))))))))
|
#t)))))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.0)))
|
`(("guile" ,guile-2.0)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("guile-reader" ,guile-reader)))
|
||||||
(synopsis "Functional static site generator")
|
(synopsis "Functional static site generator")
|
||||||
(description "Haunt is a static site generator written in Guile
|
(description "Haunt is a static site generator written in Guile
|
||||||
Scheme. Haunt features a functional build system and an extensible
|
Scheme. Haunt features a functional build system and an extensible
|
||||||
|
|
Loading…
Reference in New Issue