summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-03-18 18:25:16 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-18 18:25:20 +0100
commit1a00e3abf47055c33d33f29a202ce8a2dbdc0c46 (patch)
tree50949bd5b412817d9a45f44334a179dd331e21aa /gnu
parent8b6a54dadf1b67647dcaf689c56682720915aebf (diff)
gnu: Remove sfizz.
* gnu/packages/music.scm (sfizz): Delete variable. Fixes: guix/guix#6532 Change-Id: I8606e124fe6e186c7a3a86837fa89d579fdbb017
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/music.scm51
1 files changed, 0 insertions, 51 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 4500b96bb89..b8e2bfc8f14 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5459,57 +5459,6 @@ implementation library that is easy to integrate into other projects. A
standalone JACK client and an LV2 plugin is also available.")
(license license:lgpl2.1+)))
-(define-public sfizz
- (package
- (name "sfizz")
- (version "1.2.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/sfztools/sfizz"
- "/releases/download/" version
- "/sfizz-" version ".tar.gz"))
- (sha256
- (base32
- "1wsr3dpn7a7whqn480m02kp6n4raamnfi3imhf2q8k58md1yn9jw"))
- (modules '((guix build utils)))
- (snippet
- '(for-each delete-file-recursively
- '("external/abseil-cpp"
- ;; This package needs an unreleased version of
- ;; simde.
- ;; "external/simde"
- "plugins/editor/external/vstgui4"
- "plugins/vst"
- "src/external/pugixml")))))
- (build-system cmake-build-system)
- (arguments
- (list
- #:configure-flags
- #~(list "-DSFIZZ_LV2_UI=OFF"
- "-DSFIZZ_VST=OFF"
- "-DSFIZZ_VST2=OFF"
- "-DSFIZZ_TESTS=ON"
- "-DSFIZZ_USE_SYSTEM_ABSEIL=ON"
- "-DSFIZZ_USE_SYSTEM_PUGIXML=ON"
- ;; XXX: Guix SIMDe version 0.7.2 is not enough.
- ;; "-DSFIZZ_USE_SYSTEM_SIMDE=ON"
- )))
- (native-inputs
- (list pkg-config))
- (inputs
- (list abseil-cpp
- glib
- jack-2
- lv2
- libsamplerate
- pugixml
- simde))
- (home-page "https://sfz.tools/sfizz/")
- (synopsis "SFZ parser and synth library")
- (description "Sfizz provides an SFZ parser and synth C++ library. It
-includes LV2 plugins and a JACK standalone client.")
- (license license:bsd-2)))
-
(define-public musescore
(let ((commit "6ebc98e021ba9d677fffa31255f8a53e60753724")
(revision "0"))