mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: GPSD: Update to 3.23.
Fixes <https://gitlab.com/gpsd/gpsd/-/issues/144>, "GPSD time will jump back 1024 weeks at after week=2180 (23-October-2021)". See also <http://bugs.gnu.org/49815>. * gnu/packages/gps.scm (gpsd): Update to 3.23. [arguments]: Set TAR=noop in the 'fix-build' phase.
This commit is contained in:
parent
29883f1130
commit
178cbc30d4
1 changed files with 5 additions and 4 deletions
|
@ -222,14 +222,14 @@ (define-public gpxsee
|
||||||
(define-public gpsd
|
(define-public gpsd
|
||||||
(package
|
(package
|
||||||
(name "gpsd")
|
(name "gpsd")
|
||||||
(version "3.21")
|
(version "3.23")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download-mirror.savannah.gnu.org"
|
(uri (string-append "https://download-mirror.savannah.gnu.org"
|
||||||
"/releases/gpsd/gpsd-" version ".tar.gz"))
|
"/releases/gpsd/gpsd-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "14gyqrbrq6jz4y6x59rdpv9d4c3pbn0vh1blq3iwrc6kz0x4ql35"))))
|
(base32 "1px9im0qfn8k7mnvjcw5myakzd7mad2drwyzji400hpwyswjjr73"))))
|
||||||
(build-system scons-build-system)
|
(build-system scons-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bc" ,bc)
|
`(("bc" ,bc)
|
||||||
|
@ -259,7 +259,8 @@ (define-public gpsd
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-build
|
(add-after 'unpack 'fix-build
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(substitute* "SConstruct"
|
(setenv "TAR" "noop")
|
||||||
|
(substitute* "SConscript"
|
||||||
(("envs = \\{\\}")
|
(("envs = \\{\\}")
|
||||||
"envs = os.environ"))
|
"envs = os.environ"))
|
||||||
#t))
|
#t))
|
||||||
|
|
Loading…
Reference in a new issue