]> Git — Sourcephile - julm/julm-nix.git/blob - nixpkgs/overlays/podl.nix
nix: format with nixfmt-rfc-style
[julm/julm-nix.git] / nixpkgs / overlays / podl.nix
1 self: super: {
2 podl = super.writeShellScriptBin "podl" ''
3 PATH=${
4 with self;
5 lib.makeBinPath [
6 coreutils
7 util-linux
8 findutils
9 gnugrep
10 gnused
11 curl
12 aria2
13 yt-dlp
14 xmlstarlet
15 file
16 ]
17 }
18 ${builtins.readFile ./podl.sh}
19 '';
20 }