3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: rxcpp: Don't use unstable tarball.

* gnu/packages/machine-learning.scm (rxcpp)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-05-26 05:00:21 +02:00
parent e91a0bff01
commit 5daafe0b5d
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -576,12 +576,13 @@ in terms of new algorithms.")
(version "4.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/ReactiveX/RxCpp/archive/v"
version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/ReactiveX/RxCpp.git")
(commit (string-append "v" version))))
(sha256
(base32 "1smxrcm0s6bz05185dx1i2xjgn47rq7m247pblil6p3bmk3lkfyk"))
(file-name (string-append name "-" version ".tar.gz"))))
(base32 "1rdpa3jlc181jd08nk437aar085h28i45s6nzrv65apb3xyyz0ij"))
(file-name (git-file-name name version))))
(build-system cmake-build-system)
(arguments
`(#:phases