guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: denemo: Change default preferences to use the already-presen


From: Kei Kebreau
Subject: 01/01: gnu: denemo: Change default preferences to use the already-present lilypond.
Date: Mon, 12 Dec 2016 17:16:52 +0000 (UTC)

kkebreau pushed a commit to branch master
in repository guix.

commit b43ec33b6d2402d9849ee0b2bfa970e1ead3b3c0
Author: Kei Kebreau <address@hidden>
Date:   Sun Dec 11 17:23:32 2016 -0500

    gnu: denemo: Change default preferences to use the already-present lilypond.
    
    * gnu/packages/music.scm (denemo)[progpagated-inputs]: Move lilypond to ...
    [inputs]: ... here.
    [phases]: New phase set-lilypond.
---
 gnu/packages/music.scm |   15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 116e8d4..4297f84 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -251,6 +251,18 @@ many input formats and provides a customisable Vi-style 
user interface.")
            ;; testsuite.
            (lambda _
              (zero? (system* "make" "-C" "tests" "check"))))
+         (add-before 'build 'set-lilypond
+           ;; This phase sets the default path for lilypond to its current
+           ;; location in the store.
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let* ((lilypond (string-append (assoc-ref inputs "lilypond")
+                                             "/bin/lilypond")))
+               (substitute* "src/core/prefops.c"
+                 (("g_string_new \\(\"lilypond\"\\);")
+                  (string-append "g_string_new (\""
+                                 lilypond
+                                 "\");"))))
+             #t))
          (add-after 'install 'correct-filename
            ;; "graft-derivation/shallow" from the (guix grafts) module runs in
            ;; the C locale, expecting file names to be ASCII encoded. This
@@ -283,11 +295,10 @@ many input formats and provides a customisable Vi-style 
user interface.")
        ("libsndfile" ,libsndfile)
        ("libtool" ,libtool)
        ("libxml2" ,libxml2)
+       ("lilypond", lilypond)
        ("portaudio" ,portaudio)
        ("portmidi" ,portmidi)
        ("rubberband" ,rubberband)))
-    (propagated-inputs
-     `(("lilypond", lilypond)))
     (synopsis "Graphical music notation, front-end to GNU Lilypond")
     (description
      "GNU Denemo is a music notation editor that provides a convenient



reply via email to

[Prev in Thread] Current Thread [Next in Thread]