guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add ruby-wayback-machine-downloader.


From: guix-commits
Subject: 04/04: gnu: Add ruby-wayback-machine-downloader.
Date: Fri, 25 Oct 2019 06:34:59 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 0c558aa985161b74b80319dbefccf9eab537ef4e
Author: Diego Nicola Barbato <address@hidden>
Date:   Tue Oct 1 16:06:57 2019 +0200

    gnu: Add ruby-wayback-machine-downloader.
    
    * gnu/packages/ruby.scm (ruby-wayback-machine-downloader): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index d5f7fa5..020bb17 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2019 Jelle Licht <address@hidden>
 ;;; Copyright © 2019 Brian Leung <address@hidden>
 ;;; Copyright © 2019 Collin J. Doering <address@hidden>
+;;; Copyright © 2019 Diego N. Barbato <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8965,3 +8966,29 @@ programming: intellisense, diagnostics, inline 
documentation, and type
 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]