mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: xdelta: Fetch sources from git.
* gnu/packages/compression.scm (xdelta)[source]: Fetch from git.
This commit is contained in:
parent
112fcafbae
commit
0633c77b1b
1 changed files with 6 additions and 5 deletions
|
@ -1047,13 +1047,14 @@ smaller than those produced by @code{Xdelta}.")
|
|||
(version "3.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/jmacd/xdelta/archive/v"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jmacd/xdelta.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17g2pbbqy6h20qgdjq7ykib7kg5ajh8fwbsfgyjqg8pwg19wy5bm"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
"09mmsalc7dwlvgrda56s2k927rpl3a5dzfa88aslkqcjnr790wjy"))
|
||||
(snippet
|
||||
;; This file isn't freely distributable and has no effect on building.
|
||||
'(begin
|
||||
|
|
Loading…
Reference in a new issue