guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: shepherd: Add 0.10.0.


From: guix-commits
Subject: 01/02: gnu: shepherd: Add 0.10.0.
Date: Sat, 13 May 2023 10:42:44 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 1d9efb858fadb7668d3bea33288ce31d42806b6c
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat May 6 22:26:56 2023 +0200

    gnu: shepherd: Add 0.10.0.
    
    * gnu/packages/admin.scm (shepherd-0.10): New variable.
    (guile2.2-shepherd): Inherit from SHEPHERD-0.10.
---
 gnu/packages/admin.scm | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 64d5182037..c0944685ea 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -367,11 +367,23 @@ interface and is based on GNU Guile.")
                          guile-fibers-1.1))       ;for cross-compilation
     (inputs (list guile-3.0-latest guile-fibers-1.1))))
 
+(define-public shepherd-0.10
+  (package
+    (inherit shepherd-0.9)
+    (version "0.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append 
"https://alpha.gnu.org/gnu/shepherd/shepherd-";
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0dpbcq4jhqfv39jzc675ccidiyv8ziw5x9qv9kwxv132a5qf8phf"))))))
+
 (define-public shepherd shepherd-0.9)
 
 (define-public guile2.2-shepherd
   (package
-    (inherit shepherd-0.9)
+    (inherit shepherd-0.10)
     (name "guile2.2-shepherd")
     (native-inputs (list pkg-config guile-2.2))
     (inputs (list guile-2.2 guile2.2-fibers))))



reply via email to

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