mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-02-19 14:30:58 -05:00
14 lines
268 B
Nix
14 lines
268 B
Nix
{pkgs}:
|
|
pkgs.writeShellApplication {
|
|
name = "updateR";
|
|
|
|
# Tools your script needs at runtime
|
|
runtimeInputs = [
|
|
pkgs.wget
|
|
pkgs.gnused
|
|
pkgs.coreutils
|
|
];
|
|
|
|
# Keep script in separate file, but embed contents
|
|
text = builtins.readFile ./updater.sh;
|
|
}
|