gnu: noisetorch: Update to 0.7.2-beta.
* gnu/packages/pulseaudio.scm (noisetorch): Update to 0.7.2-beta. [arguments]: Add phase 'disable-update-check.go. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
abd2fde847
commit
abafdb2aac
1 changed files with 8 additions and 2 deletions
|
@ -538,7 +538,7 @@ The plugin is made to work with 1 or 2 channels (ladspa plugin),
|
||||||
(define-public noisetorch
|
(define-public noisetorch
|
||||||
(package
|
(package
|
||||||
(name "noisetorch")
|
(name "noisetorch")
|
||||||
(version "0.6.1-beta")
|
(version "0.7.2-beta")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -547,7 +547,7 @@ The plugin is made to work with 1 or 2 channels (ladspa plugin),
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1jmh7204mhlabdn0azfjrm3kb944j24n0w0cwibqrs9lfgdn8k52"))))
|
(base32 "06xlqjma8h7lcnqgc9226blps6m9dp487hk71lslfxj0jkay548k"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/lawl/NoiseTorch"
|
`(#:import-path "github.com/lawl/NoiseTorch"
|
||||||
|
@ -572,6 +572,12 @@ The plugin is made to work with 1 or 2 channels (ladspa plugin),
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(format #t "package main~%~%var version=~s~&" ,version))))
|
(format #t "package main~%~%var version=~s~&" ,version))))
|
||||||
#t))
|
#t))
|
||||||
|
(add-after 'unpack 'disable-update-check.go
|
||||||
|
(lambda _
|
||||||
|
(with-directory-excursion "src/github.com/lawl/NoiseTorch"
|
||||||
|
(substitute* "main.go"
|
||||||
|
((".*updateCheck.*") "")))
|
||||||
|
#t))
|
||||||
(add-before 'build 'go-generate
|
(add-before 'build 'go-generate
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "src/github.com/lawl/NoiseTorch"
|
(with-directory-excursion "src/github.com/lawl/NoiseTorch"
|
||||||
|
|
Reference in a new issue