1
0
Fork 0
nixfiles/pkgs/update-from-hydra/default.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
];
}