gnu: bsequencer: Update to 1.8.10.

* gnu/packages/music.scm (bsequencer): Update to 1.8.10.
[arguments]: Set CC to something sensible.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-29 20:43:45 +02:00
parent c4ac8cf4f6
commit 3df874deb9
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1869,7 +1869,7 @@ (define-public tascam-gtk
(define-public bsequencer
(package
(name "bsequencer")
(version "1.8.0")
(version "1.8.10")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1878,12 +1878,13 @@ (define-public bsequencer
(file-name (git-file-name name version))
(sha256
(base32
"0w7iwzz2r4a699fi24qk71vv2k3jpl9ylzlgmvyc3rlgad0m01k1"))))
"0w3m7x0619iq8rafcy0bal4gwh9m9h7iq93q7gkpxhv6dq58ix6l"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:tests? #f ; there are none
(list (string-append "CC=" ,(cc-for-target))
(string-append "PREFIX=" (assoc-ref %outputs "out")))
#:tests? #f ; there are none
#:phases
(modify-phases %standard-phases
(delete 'configure))))