1
0

pkgs/update-from-hydra: Add script that updates paths based on hydra builds

This commit is contained in:
2023-09-02 21:47:45 +02:00
parent 491a4c2632
commit b0259542e4
6 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "update-from-hydra";
text = builtins.readFile ./update-from-hydra.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
];
}