guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: protobuf-2: Use gexp in arguments.


From: guix-commits
Subject: branch master updated: gnu: protobuf-2: Use gexp in arguments.
Date: Mon, 14 Nov 2022 04:01:37 -0500

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

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f73d9690ad gnu: protobuf-2: Use gexp in arguments.
f73d9690ad is described below

commit f73d9690ad692653548457d4ab108b5200ef4d9b
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Mon Nov 14 08:59:23 2022 +0000

    gnu: protobuf-2: Use gexp in arguments.
    
    This fixes the breakage introduced when the protobuf package switched to 
using
    gexp's in the arguments.
    
    The package doesn't build, but at least the builder is now deterministic and
    valid Guile.
    
    * gnu/packages/protobuf.scm (protobuf-2)[arguments]: Adapt to use gexp's.
---
 gnu/packages/protobuf.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 22900e89cd..eda1b5ec51 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -214,8 +214,8 @@ internal RPC protocols and file formats.")
                 "040rcs9fpv4bslhiy43v7dcrzakz4vwwpyqg4jp8bn24sl95ci7f"))))
     (arguments (substitute-keyword-arguments (package-arguments protobuf)
                  ((#:phases phases)
-                  `(modify-phases ,phases
-                     (delete 'disable-broken-tests)))))))
+                  #~(modify-phases #$phases
+                      (delete 'disable-broken-tests)))))))
 
 (define-public protobuf-c
   (package



reply via email to

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