[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/05: gnu: gsequencer: Build with libsoup 2.
From: |
guix-commits |
Subject: |
03/05: gnu: gsequencer: Build with libsoup 2. |
Date: |
Wed, 22 Dec 2021 23:59:43 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit 522870778150732f8a8c3d215e08e8e748365ffc
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Dec 23 03:35:35 2021 +0000
gnu: gsequencer: Build with libsoup 2.
* gnu/packages/music.scm (gsequencer)[native-inputs]: Use the new style.
[inputs]: Replace libsoup with libsoup-minimal-2 and webkitgtk with
webkitgtk-with-libsoup2. Use the new style.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/music.scm | 54 +++++++++++++++++++++++++-------------------------
1 file changed, 27 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ba06584..18a3c11 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5013,34 +5013,34 @@ studio.")
(system "Xvfb &")
(setenv "DISPLAY" ":0"))))))
(native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("cunit" ,cunit)
- ("gettext" ,gettext-minimal)
- ("gobject-introspection" ,gobject-introspection)
- ("gtk-doc" ,gtk-doc)
- ("libtool" ,libtool)
- ("libxslt" ,libxslt)
- ("pkg-config" ,pkg-config)
- ("xorg-server" ,xorg-server-for-tests)))
+ (list autoconf
+ automake
+ cunit
+ gettext-minimal
+ gobject-introspection
+ gtk-doc
+ libtool
+ libxslt
+ pkg-config
+ xorg-server-for-tests))
(inputs
- `(("alsa-lib" ,alsa-lib)
- ("dssi" ,dssi)
- ("fftw" ,fftw)
- ("gst-plugins-base" ,gst-plugins-base)
- ("gstreamer" ,gstreamer)
- ("gtk+" ,gtk+)
- ("jack" ,jack-1)
- ("ladspa" ,ladspa)
- ("libinstpatch" ,libinstpatch)
- ("libsamplerate" ,libsamplerate)
- ("libsndfile" ,libsndfile)
- ("libsoup" ,libsoup)
- ("libuuid" ,util-linux "lib")
- ("libxml2" ,libxml2)
- ("lv2" ,lv2)
- ("pulseaudio" ,pulseaudio)
- ("webkitgtk" ,webkitgtk)))
+ (list alsa-lib
+ dssi
+ fftw
+ gst-plugins-base
+ gstreamer
+ gtk+
+ jack-1
+ ladspa
+ libinstpatch
+ libsamplerate
+ libsndfile
+ libsoup-minimal-2
+ libxml2
+ lv2
+ pulseaudio
+ `(,util-linux "lib")
+ webkitgtk-with-libsoup2))
(home-page "https://nongnu.org/gsequencer/")
(synopsis "Advanced Gtk+ Sequencer")
(description