diff options
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 4a84f8ccdf..578a0bd016 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1424,6 +1424,35 @@ performances. The plugins include a cellular automaton synthesizer, an envelope follower, distortion effects, tape effects and more.") (license license:gpl2+))) +(define-public omins-lv2 + (let ((commit "058f341053067b69a84d4081107fda5058290ff9") + (revision "1")) + (package + (name "omins-lv2") + ;; No release despite being perfectly usable. 0.0.0 seems to be the only + ;; version the author ever specified: + (version (git-version "0.0.0" revision commit)) + (source + (origin (method git-fetch) + (uri + (git-reference + (url "https://git.drobilla.net/cgit.cgi/omins.lv2.git/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "01hnx4hhbz3ap3bw15s42q4q1mw1mhdjwygq4550wvjfg6k4ga8w")))) + (build-system waf-build-system) + (arguments (list #:tests? #false)) ;There are no tests. + (inputs (list lv2)) + (native-inputs (list pkg-config)) + (home-page "https://git.drobilla.net/cgit.cgi/omins.lv2.git/") + (synopsis "LV2 audio plugins for modular synthesis") + (description + "Omins-lv2 is a small collection of LV2 audio plugins for modular +synthesis.") + (license license:gpl2+)))) + (define-public snapcast (package (name "snapcast") @@ -6311,7 +6340,7 @@ and DSD streams.") (define-public qpwgraph (package (name "qpwgraph") - (version "0.6.0") + (version "0.6.2") (source (origin (method git-fetch) (uri (git-reference @@ -6320,7 +6349,7 @@ and DSD streams.") (file-name (git-file-name name version)) (sha256 (base32 - "17jl347rwagdyx6pgnp83l1ffhlyfl0s4jf7ii2i1j3s1m9sz7y0")))) + "0185hxbwqxhjiyym0s7bmrm50f3p4bnvx92qqmgvg3zd7r1x8m8s")))) (build-system cmake-build-system) (arguments (list #:tests? #f)) ; no tests |