summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSughosha <sughosha@disroot.org>2022-02-13 19:19:43 -0500
committerLeo Famulari <leo@famulari.name>2022-02-13 19:24:26 -0500
commit6bfb3fc1f450c7d618041303d0ff35691b5991c0 (patch)
tree1c27afc13c241c4536956864cf1cb2954d75c314
parentc81b0dcc72dca16ec966dbde106b5d5623226a93 (diff)
downloadguix-patches-6bfb3fc1f450c7d618041303d0ff35691b5991c0.tar
guix-patches-6bfb3fc1f450c7d618041303d0ff35691b5991c0.tar.gz
gnu: non-sequencer: Build with libsigc++ 2.
This fixes the build: ------ Configuring sequencer Checking for 'sigc++-2.0' >= 2.0.0 : not found The configuration failed ------ * gnu/packages/music.scm (non-sequencer)[inputs]: Replace libsigc++ with libsigc++-2.
-rw-r--r--gnu/packages/music.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ddb1126a47..a99167e9ef 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -44,6 +44,7 @@
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2021 Thomas Albers Raviola <thomas@thomaslabs.org>
+;;; Copyright © 2022 Sughosha <sughosha@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1773,7 +1774,7 @@ music theorist Paul Nauert's quantization grids or Q-Grids, for short.")
'()))
#:python ,python-2))
(inputs
- (list jack-1 libsigc++ liblo ntk))
+ (list jack-1 libsigc++-2 liblo ntk))
(native-inputs
(list pkg-config))
(home-page "https://non.tuxfamily.org/wiki/Non%20Sequencer")