nixfiles/pkgs/update-nixfiles/default.nix

13 lines
197 B
Nix
Raw Normal View History

2024-05-16 14:28:11 +02:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "update-nixfiles";
text = builtins.readFile ./update-nixfiles.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
gnugrep
];
}