me
/
guix
Archived
1
0
Fork 0

gnu: spin2cpp: Don't use unstable tarball.

* gnu/packages/embedded.scm (spin2cpp)[source]: Download using git-fetch.
master
Efraim Flashner 2020-01-24 10:16:07 +02:00
parent 9be1f2b77c
commit 02aab3df21
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 5 deletions

View File

@ -827,13 +827,14 @@ upload binaries to a Parallax Propeller micro-controller.")
(name "spin2cpp") (name "spin2cpp")
(version "3.6.4") (version "3.6.4")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/totalspectrum/spin2cpp/" (uri (git-reference
"archive/v" version ".tar.gz")) (url "https://github.com/totalspectrum/spin2cpp")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"05qak187sn0xg7vhrxw27b19xhmid1b8ab8kax3gv0faavzablfw")))) "0wznqvsckzzz4hdy2rpvj6jqpxw4yn7i0c7zxfm6i46k8gg9327b"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ;; The tests assume that a micro-controller is connected. `(#:tests? #f ;; The tests assume that a micro-controller is connected.