guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 942ae75bb5ccbe8aec3f23557aa5de420eeb7917
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Aug 26 11:28:54 2025 +0200

    gnu: sbase: Update to 0.1.
    
    * gnu/packages/suckless.scm (sbase): Update to 0.1.
    
    Change-Id: I389c841bdcd06bd403207254ff6589f3b2e25cc8
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/suckless.scm | 55 ++++++++++++++++++++++-------------------------
 1 file changed, 26 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 4a2a467b80..030297072b 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -1067,37 +1067,34 @@ running a command.")
     (license license:cc0)))
 
 (define-public sbase
-  ;; There are no tagged releases.
-  (let ((commit "2c2a7f54ab55a022a617e510b6e00c3e2736fabd")
-        (revision "0"))
-    (package
-      (name "sbase")
-      (version (git-version "0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri
-          (git-reference
-           (url "https://git.suckless.org/sbase/";)
-           (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "119v1lpgsx8bx9h57wg454ddhzz2awqavl3wrn35a704vifg28g0"))))
-      (build-system gnu-build-system)
-      (arguments
-       (list
-        #:tests? #f                     ;no test suite
-        #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
-                             (string-append "PREFIX=" #$output))
-        #:phases
-        #~(modify-phases %standard-phases
-            (delete 'configure))))
-      (home-page "https://core.suckless.org/sbase/";)
-      (synopsis "Collection of UNIX tools")
-      (description "@command{sbase} is a collection of UNIX tools similar to 
those of GNU
+  (package
+    (name "sbase")
+    (version "0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+          (url "https://git.suckless.org/sbase/";)
+          (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1sbn258s06rl9prflkpif3hfgllxszf0nq7zdkxr5dj3248zgvmz"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f                     ;no test suite
+      #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                           (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure))))
+    (home-page "https://core.suckless.org/sbase/";)
+    (synopsis "Collection of UNIX tools")
+    (description "@command{sbase} is a collection of UNIX tools similar to 
those of GNU
 Coreutils, containing utilities commands such as @command{grep}, @command{cp},
 @command{rm}, etc.")
-      (license license:expat))))
+    (license license:expat)))
 
 (define-public scron
   (package

Reply via email to