mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: burp: Update to 2.3.30.
* gnu/packages/backup.scm (burp): Update to 2.3.30. [source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf and automake.
This commit is contained in:
parent
4ba0f3b597
commit
5d26ba7ee3
1 changed files with 13 additions and 9 deletions
|
@ -1067,14 +1067,16 @@ (define-public dump
|
||||||
(define-public burp
|
(define-public burp
|
||||||
(package
|
(package
|
||||||
(name "burp")
|
(name "burp")
|
||||||
(version "2.3.28")
|
(version "2.3.30")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "mirror://sourceforge/burp/burp-" version
|
(method git-fetch)
|
||||||
"/burp-" version ".tar.bz2"))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/grke/burp")
|
||||||
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1f9i5d415psbr03fqd47p162qy25sypra1w8w16ym6jk1pvdjsgx"))
|
||||||
"18f8cjsb87skabvz4cl5pdln35qmim7x686js1xzpld6wyl9kv2k"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -1092,7 +1094,9 @@ (define-public burp
|
||||||
("uthash" ,uthash)
|
("uthash" ,uthash)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("check" ,check)
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("check" ,check)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://burp.grke.org")
|
(home-page "https://burp.grke.org")
|
||||||
(synopsis "Differential backup and restore")
|
(synopsis "Differential backup and restore")
|
||||||
|
|
Loading…
Reference in a new issue