diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-08 00:25:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-08 00:25:26 +0100 |
commit | a3aa25f83dedc39966821eb14c8c3847c242af6c (patch) | |
tree | b248ceb87008b148a5a6c546a6609e423bb71ba2 /guix-download.in | |
parent | 37d19403e78e8dfab24a471bee7c8ee17346e43c (diff) | |
download | patches-a3aa25f83dedc39966821eb14c8c3847c242af6c.tar patches-a3aa25f83dedc39966821eb14c8c3847c242af6c.tar.gz |
guix-download: Print the hash of the file's contents, no that of the path.
* guix-download.in (guix-download): Display the hash of the contents of
PATH, not the path hash. Also, call `add-to-store' with FIXED? = #t.
Diffstat (limited to 'guix-download.in')
-rw-r--r-- | guix-download.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/guix-download.in b/guix-download.in index 44118c9e3f..8a3c2c4100 100644 --- a/guix-download.in +++ b/guix-download.in @@ -173,9 +173,9 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@")) (fetch uri port) (close port) (add-to-store store (basename (uri-path uri)) - #f #f "sha256" name)))) - (fmt (assq-ref opts 'format))) - (format #t "~a~%~a~%" - path - (fmt (query-path-hash store path))) + #t #f "sha256" name)))) + (hash (call-with-input-file path + (compose sha256 get-bytevector-all))) + (fmt (assq-ref opts 'format))) + (format #t "~a~%~a~%" path (fmt hash)) #t)) |