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