me
/
guix
Archived
1
0
Fork 0

gnu: git-imerge: Don't use unstable tarball.

* gnu/packages/version-control.scm (git-imerge)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-03-30 20:34:28 +01:00
parent 3671b69c79
commit 5c54debc2f
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 10 additions and 10 deletions

View File

@ -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))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0vi1w3f0yk4gqhxj2hzqafqq28rihyhyfnp8x7xzib96j2si14a4"))))
"0a6ay8fpgz3yd84jc40w41x0rcfpan6bcq4wd1hxiiqwb51jysb2"))))
(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