[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: boxes: Properly wrap hash.
From: |
guix-commits |
Subject: |
branch master updated: gnu: boxes: Properly wrap hash. |
Date: |
Mon, 04 Jan 2021 14:27:01 -0500 |
This is an automated email from the git hooks/post-receive script.
leoprikler pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6054b7d gnu: boxes: Properly wrap hash.
6054b7d is described below
commit 6054b7d89dbbed5450f275d8559d1779d6e9db1f
Author: Leo Prikler <leo.prikler@student.tugraz.at>
AuthorDate: Mon Jan 4 20:24:53 2021 +0100
gnu: boxes: Properly wrap hash.
* gnu/packages/shellutils.scm (boxes)[sha256]: Use (base32 hash).
---
gnu/packages/shellutils.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 44a1934..c7a941d 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -57,7 +57,8 @@
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- "0b12rsynrmkldlwcb62drk33kk0aqwbj10mq5y5x3hjf626gjwsi")))
+ (base32
+ "0b12rsynrmkldlwcb62drk33kk0aqwbj10mq5y5x3hjf626gjwsi"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: boxes: Properly wrap hash.,
guix-commits <=