guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: opustags: Use the new style.


From: guix-commits
Subject: branch master updated: gnu: opustags: Use the new style.
Date: Sun, 19 Dec 2021 15:29:03 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c4da95c  gnu: opustags: Use the new style.
c4da95c is described below

commit c4da95cad3fd397261e74cfcfffb6f60da1dfecb
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Sun Dec 19 15:26:33 2021 -0500

    gnu: opustags: Use the new style.
    
    * gnu/packages/music.scm (opustags)[arguments]: Use the new style.
---
 gnu/packages/music.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index f3ad889..ba06584 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -61,6 +61,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages music)
+  #:use-module (guix gexp)
   #:use-module (guix utils)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -6791,21 +6792,22 @@ midi devices to JACK midi devices.")
                (base32 "1wsfw713rhi2gg5xc04cx5i31hlw0l3wdflj3r1y8w45bdk6ag1z"))
               (file-name (git-file-name name version))))
     (arguments
-     `(#:test-target "check"
+     (list
+       #:test-target "check"
        #:phases
-       (modify-phases %standard-phases
+       #~(modify-phases %standard-phases
          ;; This package does not use the perl-build-system, so we have to
          ;; manually set up the Perl environment used by the test suite.
          (add-before 'check 'setup-perl-environment
            (lambda* (#:key inputs #:allow-other-keys)
              (let* ((perl-list-moreutils-lib
-                      (string-append (assoc-ref inputs "perl-list-moreutils")
+                      (string-append #$(this-package-native-input 
"perl-list-moreutils")
                                      "/lib/perl5/site_perl/"
-                                     ,(package-version perl)))
+                                     #$(package-version perl)))
                     (perl-exporter-tiny-lib
-                      (string-append (assoc-ref inputs "perl-exporter-tiny")
+                      (string-append #$(this-package-native-input 
"perl-exporter-tiny")
                                      "/lib/perl5/site_perl/"
-                                     ,(package-version perl))))
+                                     #$(package-version perl))))
                (setenv "PERL5LIB" (string-append perl-list-moreutils-lib ":"
                                                  perl-exporter-tiny-lib))))))))
     (build-system cmake-build-system)



reply via email to

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