nixfiles/pkgs/update-nixfiles/default.nix

16 lines
226 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "update-nixfiles";
text = builtins.readFile ./update-nixfiles.sh;
runtimeInputs = with pkgs; [
bash
curl
jq
nix
gnugrep
git
openssh
];
}