guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: nethogs: Use explicitly BASE32 source hash.


From: guix-commits
Subject: 02/02: gnu: nethogs: Use explicitly BASE32 source hash.
Date: Mon, 25 May 2020 21:08:18 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit dc36bfec50de76aca1ea0d5714043b6ad9c52747
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Tue May 26 02:20:44 2020 +0200

    gnu: nethogs: Use explicitly BASE32 source hash.
    
    Works around
    
      error: failed to load 'gnu/packages/networking.scm':
      ice-9/eval.scm:293:34: Wrong type to apply: #<syntax-transformer base32>
    
    when manually building from git.
    
    * gnu/packages/networking.scm (nethogs)[source]: Use BASE32 explicitly.
---
 gnu/packages/networking.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index b0c1440..fd29370 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1731,8 +1731,9 @@ the bandwidth, loss, and other parameters.")
              (url "https://github.com/raboof/nethogs";)
              (commit (string-append "v" version))))
        (hash
-        (content-hash "0sn1sdp86akwlm4r1vmkxjjl50c0xaisk91bbz57z7kcsaphxna9"
-                      sha256))
+        (content-hash
+         (base32 "0sn1sdp86akwlm4r1vmkxjjl50c0xaisk91bbz57z7kcsaphxna9")
+         sha256))
        (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (inputs



reply via email to

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