1
0

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
];
}