gnu: git-imerge: Don't use unstable tarball.
* gnu/packages/version-control.scm (git-imerge)[source]: Use GIT-FETCH and GIT-FILE-NAME.master
parent
3671b69c79
commit
5c54debc2f
|
@ -2098,18 +2098,18 @@ how information about the merge is displayed.")
|
||||||
(package
|
(package
|
||||||
(name "git-imerge")
|
(name "git-imerge")
|
||||||
(version "1.1.0")
|
(version "1.1.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/mhagger/git-imerge/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/mhagger/git-imerge.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0a6ay8fpgz3yd84jc40w41x0rcfpan6bcq4wd1hxiiqwb51jysb2"))))
|
(base32 "0vi1w3f0yk4gqhxj2hzqafqq28rihyhyfnp8x7xzib96j2si14a4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; The are only manual test scripts.
|
`(#:tests? #f ; only manual test scripts
|
||||||
#:make-flags (list (string-append "DESTDIR=" %output)
|
#:make-flags (list (string-append "DESTDIR=" %output)
|
||||||
"PREFIX=")
|
"PREFIX=")
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Reference in New Issue