veloren: update and fix
[julm/julm-nix.git] / nixpkgs / overlays / podl.nix
index b9f27180e8358ae26987e6cf6bd864c79c614cc9..69ec6a8974c39c6f35d8a24ea2ab2143214f1057 100644 (file)
@@ -1,9 +1,20 @@
 self: super: {
   podl = super.writeShellScriptBin "podl" ''
-    PATH=${with self; lib.makeBinPath [
-      coreutils utillinux findutils gnugrep gnused
-      curl aria2 youtube-dl xmlstarlet
-    ]}
+    PATH=${
+      with self;
+      lib.makeBinPath [
+        coreutils
+        util-linux
+        findutils
+        gnugrep
+        gnused
+        curl
+        aria2
+        yt-dlp
+        xmlstarlet
+        file
+      ]
+    }
     ${builtins.readFile ./podl.sh}
   '';
 }