forked from emily/nixfiles
12 lines
197 B
Nix
12 lines
197 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "update-nixfiles";
|
|
text = builtins.readFile ./update-nixfiles.sh;
|
|
runtimeInputs = with pkgs; [
|
|
curl
|
|
jq
|
|
nix
|
|
gnugrep
|
|
];
|
|
}
|