gnu: patchmatrix: Update to 0.12.0-1.a0b0b1e.

* gnu/packages/music.scm (patchmatrix): Update to 0.12.0-1.a0b0b1e.
[arguments]: Add phase "make-gzip-archive-writable".
This commit is contained in:
Ricardo Wurmus 2018-06-22 13:35:56 +02:00
parent 3fa31317c2
commit 2394afa496
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 36 additions and 24 deletions

View File

@ -41,6 +41,7 @@
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system ant) #:use-module (guix build-system ant)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix build-system meson)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (guix build-system scons) #:use-module (guix build-system scons)
#:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system glib-or-gtk)
@ -3781,32 +3782,43 @@ notation and includes basic support for digital audio.")
(license license:gpl2))) (license license:gpl2)))
(define-public patchmatrix (define-public patchmatrix
(package ;; There have been no releases for more than a year.
(name "patchmatrix") (let ((commit "a0b0b1e791f4574d5abd059cfe1819c71e8b18d5")
(version "0.12.0") (revision "1"))
(source (origin (package
(method git-fetch) (name "patchmatrix")
(uri (git-reference (version (git-version "0.12.0" revision commit))
(url "https://github.com/OpenMusicKontrollers/patchmatrix.git") (source (origin
(commit version))) (method git-fetch)
(file-name (string-append "patchmatrix-" version "-checkout")) (uri (git-reference
(sha256 (url "https://github.com/OpenMusicKontrollers/patchmatrix.git")
(base32 (commit commit)))
"19ivp7h5vq6r1qhmycjxzvrgg7fc4a3v5vb3n4c7afs4z3pj53zi")))) (file-name (string-append "patchmatrix-" version "-checkout"))
(build-system cmake-build-system) (sha256
(arguments '(#:tests? #f)) ; no test target (base32
(inputs "0pph4ra7aci3rbpqvvr564pi16vxrk448bmvp8985cd9lbjlrp3m"))))
`(("jack" ,jack-1) (build-system meson-build-system)
("lv2" ,lv2) (arguments
("mesa" ,mesa))) '(#:tests? #f ; no test target
(native-inputs #:phases
`(("pkg-config" ,pkg-config))) (modify-phases %standard-phases
(home-page "https://github.com/OpenMusicKontrollers/patchmatrix") (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable
(synopsis "Simple JACK patch bay") (lambda* (#:key outputs #:allow-other-keys)
(description "PatchMatrix is a patch bay for the JACK audio connection (map make-file-writable
(find-files (assoc-ref outputs "out") ".*\\.gz$"))
#t)))))
(inputs
`(("jack" ,jack-1)
("lv2" ,lv2)
("mesa" ,mesa)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "https://github.com/OpenMusicKontrollers/patchmatrix")
(synopsis "Simple JACK patch bay")
(description "PatchMatrix is a patch bay for the JACK audio connection
kit. It provides a patch bay in flow matrix style for audio, MIDI, CV, and kit. It provides a patch bay in flow matrix style for audio, MIDI, CV, and
OSC connections.") OSC connections.")
(license license:artistic2.0))) (license license:artistic2.0))))
(define-public sorcer (define-public sorcer
(package (package