mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ruby-wayback-machine-downloader.
* gnu/packages/ruby.scm (ruby-wayback-machine-downloader): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b1eecb5c46
commit
0c558aa985
1 changed files with 27 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
;;; Copyright © 2019 Jelle Licht <jlicht@fsfe.org>
|
||||
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
||||
;;; Copyright © 2019 Collin J. Doering <collin@rekahsoft.ca>
|
||||
;;; Copyright © 2019 Diego N. Barbato <dnbarbato@posteo.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -8965,3 +8966,29 @@ (define-public ruby-solargraph
|
|||
checking.")
|
||||
(home-page "https://solargraph.org/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-wayback-machine-downloader
|
||||
(package
|
||||
(name "ruby-wayback-machine-downloader")
|
||||
(version "2.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri
|
||||
"wayback_machine_downloader"
|
||||
version))
|
||||
(sha256
|
||||
(base32
|
||||
"12kb1qmvmmsaihqab1prn6cmynkn6cgb4vf41mgv22wkcgv5wgk2"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; no tests
|
||||
(synopsis "Download archived websites from the Wayback Machine")
|
||||
(description
|
||||
"Wayback Machine Downloader is a command line tool for downloading
|
||||
websites from the Internet Archive's Wayback Machine (archive.org).
|
||||
It allows fine grained control over what to download by specifying
|
||||
which snapshots to consider and what files to include.")
|
||||
(home-page
|
||||
"https://github.com/hartator/wayback-machine-downloader")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue