mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 01:07:41 +01:00
gnu: go-github-com-tdewolff-parse-v2: Regenerate hash.
* gnu/packages/golang.scm (go-github-com-tdewolff-parse-v2)[#:phases]: Add phase 'regenerate-hash. [native-inputs]: Add go-github-com-tdewolff-hasher. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
e90b54ee99
commit
d3e12a02d3
1 changed files with 15 additions and 2 deletions
|
@ -3712,9 +3712,22 @@ (define-public go-github-com-tdewolff-parse-v2
|
||||||
"1dqki9ima079k9a3l72igmx5dml8qsl9z8rzw8a433f4gjhlv320"))))
|
"1dqki9ima079k9a3l72igmx5dml8qsl9z8rzw8a433f4gjhlv320"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:import-path "github.com/tdewolff/parse/v2"))
|
(list #:import-path "github.com/tdewolff/parse/v2"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'regenerate-hash
|
||||||
|
(lambda* (#:key import-path #:allow-other-keys)
|
||||||
|
(for-each
|
||||||
|
(lambda (dir)
|
||||||
|
(with-directory-excursion
|
||||||
|
(format #f "src/~a/~a" import-path dir)
|
||||||
|
(make-file-writable "hash.go")
|
||||||
|
(format #t "Generating `hash.go' for ~a...~%" dir)
|
||||||
|
(invoke "go" "generate")))
|
||||||
|
'("css" "html")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list go-github-com-tdewolff-test))
|
(list go-github-com-tdewolff-hasher
|
||||||
|
go-github-com-tdewolff-test))
|
||||||
(home-page "https://github.com/tdewolff/parse")
|
(home-page "https://github.com/tdewolff/parse")
|
||||||
(synopsis "Go parsers for web formats")
|
(synopsis "Go parsers for web formats")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue