Advertisement
Guest User

Untitled

a guest
Dec 13th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.22 KB | None | 0 0
  1.  
  2. (define-module (gnu packages tarsnap)
  3.   #:use-module (guix packages)
  4.   #:use-module (guix base64)
  5.   #:use-module (guix download)
  6.   #:use-module (guix build-system gnu)
  7.   #:use-module (guix licenses)
  8.   #:use-module (gnu packages tls)
  9.   #:use-module (gnu packages compression)
  10.   #:use-module (gnu packages linux))
  11.  
  12. (define-public tarsnap
  13.   (package
  14.     (name "tarsnap")
  15.     (version "1.0.37")
  16.     (source (origin
  17.           (method url-fetch)
  18.           (uri (string-append "https://www.tarsnap.com/download/tarsnap-autoconf-" version ".tgz"))
  19.           (sha256 (base32 "fa999413651b3bd994547a10ffe3127b4a85a88b1b9a253f2de798888718dbfa"))))
  20.     (build-system gnu-build-system)
  21.     (arguments '(#:configure-flags '("--enable-silent-rules")))
  22.     (inputs `(("openssl" ,openssl)
  23.           ("zlib" ,zlib)
  24.           ("e2fsprogs" ,e2fsprogs)))
  25.     (synopsis "tarsnap: Backups for the paranoid")
  26.     (description "A program that backs up your files")
  27.     (home-page "https://www.tarsnap.com")
  28.     (license non-copyleft)))
  29.  
  30. (tarsnap)
  31.  
  32. ; The error that I am getting:
  33. ;
  34. ; guix package: error: exception thrown: #<condition &invalid-base32-character [character: #\e string: "fa999413651b3bd994547a10ffe3127b4a85a88b1b9a253f2de798888718dbfa"] 3f84180>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement