summaryrefslogtreecommitdiff
path: root/px/packages/tarsnap.scm
diff options
context:
space:
mode:
Diffstat (limited to 'px/packages/tarsnap.scm')
-rw-r--r--px/packages/tarsnap.scm20
1 files changed, 6 insertions, 14 deletions
diff --git a/px/packages/tarsnap.scm b/px/packages/tarsnap.scm
index fc27af7..cdb5bc4 100644
--- a/px/packages/tarsnap.scm
+++ b/px/packages/tarsnap.scm
@@ -7,7 +7,8 @@
#:use-module (gnu packages tls)
#:use-module (guix build-system gnu)
#:use-module (guix download)
- #:use-module ((guix licenses) #:prefix license:)
+ #:use-module ((guix licenses)
+ #:prefix license:)
#:use-module (guix packages))
(define-public tarsnap
@@ -17,24 +18,15 @@
(source
(origin
(method url-fetch)
- (uri (string-append
- "https://github.com/Tarsnap/tarsnap/archive/"
- version ".tar.gz"))
+ (uri (string-append "https://github.com/Tarsnap/tarsnap/archive/"
+ version ".tar.gz"))
(sha256
(base32 "0b91k0sg64nxidvgzpip5a1rz0cwmygsfr13ac1q7zmd59iz1cz2"))
- (patches
- (search-patches "tarsnap-do-not-use-command-p-in-makefile.patch"))))
+ (patches (search-patches
+ "tarsnap-do-not-use-command-p-in-makefile.patch"))))
;; This official release includes a configure script but it will
;; try to invoke sh and that will not be found. Therefore it is
;; necessary to build the configure script with autoconf.
- #;
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://www.tarsnap.com/download/tarsnap-autoconf-"
- version ".tgz"))
- (sha256
- (base32 "10i0whbmb345l2ggnf4vs66qjcyf6hmlr8f4nqqcfq0h5a5j24sn"))))
(build-system gnu-build-system)
(inputs `(("openssl" ,openssl)
("zlib" ,zlib)