12 lines
196 B
Nix
12 lines
196 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "clerie-system-upgrade";
|
|
text = builtins.readFile ./clerie-system-upgrade.sh;
|
|
runtimeInputs = with pkgs; [
|
|
curl
|
|
jq
|
|
nix
|
|
];
|
|
}
|