1
0
nixfiles/pkgs/feeds-dir/default.nix

10 lines
163 B
Nix
Raw Normal View History

2025-01-05 16:26:46 +01:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "feeds-dir";
text = builtins.readFile ./feeds-dir.sh;
runtimeInputs = with pkgs; [
rainbowrss
];
}