me
/
guix
Archived
1
0
Fork 0

gnu: xxhash: Don't use unstable tarball.

* gnu/packages/digest.scm (xxhash)[source]: Use GIT-FETCH.
master
Tobias Geerinckx-Rice 2018-06-28 22:36:27 +02:00
parent 232568581b
commit 1bf1bda93c
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@
(define-module (gnu packages digest) (define-module (gnu packages digest)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix git-download)
#:use-module (guix build-system gnu)) #:use-module (guix build-system gnu))
(define-public xxhash (define-public xxhash
@ -28,12 +28,12 @@
(version "0.6.4") (version "0.6.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/Cyan4973/xxHash/archive/v" (uri (git-reference
version ".tar.gz")) (url "https://github.com/Cyan4973/xxHash")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(sha256 (sha256
(base32 "08nv9h3jzg6y85ysy2dj3qvvfsdz0rwkk497a2366syz278wqw25")))) (base32 "1az5vm14rdc3pa3l0wj180wpii14if16diril3gz8q9ip1215gwj"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:make-flags `(#:make-flags