mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: wfview: Update to 1.64.
* gnu/packages/radio.scm (wfview): Update to 1.64. [inputs]: Add eudev. [arguments]: Update 'fix-paths' phase. Change-Id: I163aae4e40192b3efd0a2550fa8a624daa95b9c0
This commit is contained in:
parent
56cd9c6735
commit
d74fc6c8e6
1 changed files with 10 additions and 5 deletions
|
@ -2809,7 +2809,7 @@ (define-public inspectrum
|
|||
(define-public wfview
|
||||
(package
|
||||
(name "wfview")
|
||||
(version "1.62")
|
||||
(version "1.64")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -2818,7 +2818,7 @@ (define-public wfview
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0rrj6h5k8plq4m6fd2yxargfhqcwkxv6bdp4rmgh6bs4prl4wvwd"))))
|
||||
(base32 "0gsijp2h72bdq0jiw8lcfdyp6rwjizngg7wjgkbdm4m05y7c5nj1"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -2829,7 +2829,13 @@ (define-public wfview
|
|||
(lambda _
|
||||
(substitute* "wfview.pro"
|
||||
(("\\.\\./wfview/")
|
||||
"../"))
|
||||
"../")
|
||||
(("!win32:DEFINES \\+= HOST=.* UNAME=.*")
|
||||
"!win32:DEFINES += HOST=\\\\\\\"guix\\\\\\\" UNAME=\\\\\\\"build\\\\\\\"")
|
||||
(("\\$\\(shell git -C .* HEAD\\)")
|
||||
"")
|
||||
(("!win32:LIBS \\+= -L\\./ -lopus")
|
||||
"!win32:LIBS += -L./ -lopus -lqcustomplot"))
|
||||
(substitute* '("wfmain.cpp")
|
||||
(("/usr/share")
|
||||
(string-append #$output "/share")))))
|
||||
|
@ -2840,10 +2846,9 @@ (define-public wfview
|
|||
(invoke "qmake"
|
||||
(string-append "PREFIX=" #$output)
|
||||
"../wfview.pro"))))))
|
||||
;; XXX: During the build it complains on missing git and hostname commands
|
||||
;; but it successfully finishes the build.
|
||||
(inputs
|
||||
(list eigen
|
||||
eudev
|
||||
hidapi
|
||||
opus
|
||||
portaudio
|
||||
|
|
Loading…
Reference in a new issue