Archived
1
0
Fork 0

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