mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: zfs-auto-snapshot: Use git-fetch.
Do not use an autogenerated tarball. This is notified by "guix lint". * gnu/packages/file-systems.scm (zfs-auto-snapshot)[source]: Use git-fetch method.
This commit is contained in:
parent
da01347bf1
commit
95bc788002
1 changed files with 10 additions and 7 deletions
|
@ -1148,12 +1148,15 @@ (define-public zfs-auto-snapshot
|
||||||
(version "1.2.4")
|
(version "1.2.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/zfsonlinux/zfs-auto-snapshot/archive/upstream/"
|
(url
|
||||||
version ".tar.gz"))
|
(string-append "https://github.com/zfsonlinux/" name))
|
||||||
|
(commit
|
||||||
|
(string-append "upstream/" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16ry1w43i44xc67gr73x6fa48ninfhqxr498ad4m3kya93vp2zrh"))))
|
(base32 "0m4xw7h5qlbn5zdf9wb137pcr5l7hyrr7w2dgr16dfm5ay64vvfq"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
;; Note: if you are inheriting from the above zfs package in order
|
;; Note: if you are inheriting from the above zfs package in order
|
||||||
|
|
Loading…
Reference in a new issue