mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: star: Make reproducible.
* gnu/packages/bioinformatics.scm (star)[arguments]: Add build phase "make-reproducible".
This commit is contained in:
parent
fa5255fd6a
commit
625cdc3fde
1 changed files with 5 additions and 0 deletions
|
@ -5563,6 +5563,11 @@ (define-public star
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'enter-source-dir
|
(add-after 'unpack 'enter-source-dir
|
||||||
(lambda _ (chdir "source") #t))
|
(lambda _ (chdir "source") #t))
|
||||||
|
(add-after 'enter-source-dir 'make-reproducible
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("(COMPILATION_TIME_PLACE=\")(.*)(\")" _ pre mid post)
|
||||||
|
(string-append pre "Built with Guix" post)))))
|
||||||
(add-after 'enter-source-dir 'do-not-use-bundled-htslib
|
(add-after 'enter-source-dir 'do-not-use-bundled-htslib
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
|
|
Loading…
Reference in a new issue