mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: go-github-com-montanaflynn-stats: Fix build.
* gnu/packages/golang-maths.scm (go-github-com-montanaflynn-stats) [arguments]<phases>: Add 'remove-examples. Change-Id: Ib07cd22ea3e7b1ae6fb20748a3458cd5bc913b9a
This commit is contained in:
parent
951eaefb8f
commit
8917b83742
1 changed files with 7 additions and 1 deletions
|
|
@ -131,7 +131,13 @@ and GCC’s decimal extension.")
|
|||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/montanaflynn/stats"))
|
||||
#:import-path "github.com/montanaflynn/stats"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-examples
|
||||
(lambda* (#:key tests? import-path #:allow-other-keys)
|
||||
(with-directory-excursion (string-append "src/" import-path)
|
||||
(delete-file-recursively "examples")))))))
|
||||
(home-page "https://github.com/montanaflynn/stats")
|
||||
(synopsis "Statistics library for Golang")
|
||||
(description
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue