1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/pkgs/update-nixfiles/default.nix
2024-05-16 14:37:15 +02:00

12 lines
197 B
Nix

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