07054b42d8
* wayback_machine_downloader: init at 2.2.1 * Fix description
17 lines
516 B
Nix
17 lines
516 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
bundlerApp {
|
|
pname = "wayback_machine_downloader";
|
|
exes = [ "wayback_machine_downloader" ];
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "wayback_machine_downloader";
|
|
|
|
meta = with lib; {
|
|
description = "Download websites from the Internet Archive Wayback Machine";
|
|
homepage = "https://github.com/hartator/wayback-machine-downloader";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.manveru ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|