From a26df18796ff4e506b16bf32fcec9336233b9e2e Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Tue, 28 Jan 2025 19:12:09 -0500 Subject: New upstream version 1.28.5. --- PKG-INFO | 49 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 deletions(-) (limited to 'PKG-INFO') diff --git a/PKG-INFO b/PKG-INFO index 2d2156a..6db2d05 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.2 Name: gallery_dl -Version: 1.28.4 +Version: 1.28.5 Summary: Command-line program to download image galleries and collections from several image hosting sites Home-page: https://github.com/mikf/gallery-dl Download-URL: https://github.com/mikf/gallery-dl/releases/latest @@ -131,9 +131,9 @@ Standalone Executable Prebuilt executable files with a Python interpreter and required Python packages included are available for -- `Windows `__ +- `Windows `__ (Requires `Microsoft Visual C++ Redistributable Package (x86) `__) -- `Linux `__ +- `Linux `__ Nightly Builds @@ -172,7 +172,6 @@ Scoop scoop install gallery-dl - Homebrew -------- @@ -229,6 +228,48 @@ This will remove the container after every use so you will always have a fresh e You can also add an alias to your shell for "gallery-dl" or create a simple bash script and drop it somewhere in your $PATH to act as a shim for this command. +Nix and Home Manager +-------------------------- + +Adding *gallery-dl* to your system environment: + +.. code:: nix + + environment.systemPackages = with pkgs; [ + gallery-dl + ]; + +Using :code:`nix-shell` + +.. code:: bash + + nix-shell -p gallery-dl + +.. code:: bash + + nix-shell -p gallery-dl --run "gallery-dl " + +For Home Manager users, you can manage *gallery-dl* declaratively: + +.. code:: nix + + programs.gallery-dl = { + enable = true; + settings = { + extractor.base-directory = "~/Downloads"; + }; + }; + +Alternatively, you can just add it to :code:`home.packages` if you don't want to manage it declaratively: + +.. code:: nix + + home.packages = with pkgs; [ + gallery-dl + ]; + +After making these changes, simply rebuild your configuration and open a new shell to have *gallery-dl* available. + Usage ===== -- cgit v1.2.3