13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "update-from-hydra";
|
|
text = builtins.readFile ./update-from-hydra.sh;
|
|
runtimeInputs = with pkgs; [
|
|
curl
|
|
jq
|
|
nix
|
|
];
|
|
}
|
|
|