{ pkgs, ... }:

pkgs.writeShellApplication {
  name = "feeds-dir";
  text = builtins.readFile ./feeds-dir.sh;
  runtimeInputs = with pkgs; [
    rainbowrss
  ];
}