gnu: motion: Don't use unstable tarball.
* gnu/packages/video.scm (motion)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
4fbcfc1482
commit
2ea678fabf
|
@ -2915,14 +2915,14 @@ It counts more than 100 plugins.")
|
||||||
(version "4.2")
|
(version "4.2")
|
||||||
(home-page "https://motion-project.github.io/")
|
(home-page "https://motion-project.github.io/")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/Motion-Project/motion/archive/"
|
(url "https://github.com/Motion-Project/motion.git")
|
||||||
"release-" version ".tar.gz"))
|
(commit (string-append "release-" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ad2zlz941lvb818g1nzlpcpbxgv0h05q164hafa805yqm7m1y3f"))
|
"0c0q6dl4v561m5y8bp0c0h4p3s52fjgcdnsrrf5ygdi288d3rfxv"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf-wrapper)
|
`(("autoconf" ,autoconf-wrapper)
|
||||||
|
|
Loading…
Reference in New Issue