mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: datamash: Update to 1.9.
* gnu/packages/datamash.scm (datamesh): Update to 1.9. [arguments]<#:configure-flags>: When cross-compiling, add "ac_cv_func_strcasecmp=yes" "gl_cv_func_strcasecmp_works=yes". Change-Id: I9fdfd1c755c74c98a84a943c7fc6a7e56f91c402 Signed-off-by: Zheng Junjie <z572@z572.online>
This commit is contained in:
parent
3688defa64
commit
13aeb3abf9
1 changed files with 9 additions and 2 deletions
|
@ -35,7 +35,7 @@
|
||||||
(define-public datamash
|
(define-public datamash
|
||||||
(package
|
(package
|
||||||
(name "datamash")
|
(name "datamash")
|
||||||
(version "1.8")
|
(version "1.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -43,11 +43,18 @@
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1zgn55gvf60w2rs5f7vx7vdp50j89ki7mmjvm81xs5pngs67xnbs"))))
|
"1ll7rfm2b8zdm1vlm3a32cr2kjbc1af8yx8z2rwxc3b50gdfp0pk"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list which ;for tests
|
(list which ;for tests
|
||||||
perl)) ;for help2man
|
perl)) ;for help2man
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(if (%current-target-system)
|
||||||
|
;; fix for crosscompiling; on GNU system strcasecmp always works
|
||||||
|
(list #:configure-flags
|
||||||
|
#~(list "ac_cv_func_strcasecmp=yes"
|
||||||
|
"gl_cv_func_strcasecmp_works=yes"))
|
||||||
|
'()))
|
||||||
(home-page "https://www.gnu.org/software/datamash/")
|
(home-page "https://www.gnu.org/software/datamash/")
|
||||||
(synopsis "Scriptable statistics and data calculation")
|
(synopsis "Scriptable statistics and data calculation")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue