me
/
guix
Archived
1
0
Fork 0

gnu: gnss-sdr: Update to 0.0.19.

* gnu/packages/radio.scm (gnss-sdr): Update to 0.0.19.
  [inputs]: Add cpu-features, gnuplot, gnutls and volk-gnsssdr.
  [arguments](configure-flags): Disable test building because many tests
  depend on downloaded sample data set.

Change-Id: I1b231896a5e481099c96667ef667c6d9e73683da
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
Andy Tai 2024-06-16 21:54:00 -07:00 committed by Guillaume Le Vaillant
parent 775481b421
commit f4d33ff279
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 9 additions and 3 deletions

View File

@ -3081,7 +3081,7 @@ instruction sets.")
(define-public gnss-sdr
(package
(name "gnss-sdr")
(version "0.0.17")
(version "0.0.19")
(source
(origin
(method git-fetch)
@ -3090,7 +3090,7 @@ instruction sets.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0kxn98vmrsd2a157cf3hsmivi6p4k4a3907j5w8hmcs0nn92786i"))))
(base32 "0l1hqfqh8ffgy6nxqdk390vmnmhv66x7m8323mz2izczqc5acy1p"))))
(build-system cmake-build-system)
(native-inputs
`(("googletest-source" ,(package-source googletest))
@ -3101,11 +3101,14 @@ instruction sets.")
(inputs
(list armadillo
boost
cpu-features
fmt
gflags
glog
gmp
gnuradio
gnuplot
gnutls
gr-osmosdr
libpcap
log4cpp
@ -3115,11 +3118,14 @@ instruction sets.")
protobuf
pugixml
spdlog
volk))
volk
volk-gnsssdr))
(arguments
`(#:configure-flags
(list "-DENABLE_GENERIC_ARCH=ON"
"-DENABLE_OSMOSDR=ON"
"-DENABLE_UNIT_TESTING=FALSE" ; many tests needing data download
"-DBLA_VENDOR=OpenBLAS"
(string-append "-DGFLAGS_ROOT="
(assoc-ref %build-inputs "gflags"))