Compare commits

...

3 commits

Author SHA1 Message Date
8253720dc6
no more nph for now 2024-10-08 11:06:23 -05:00
c5e4660d82
correct help string 2024-10-04 14:37:49 -05:00
17c2e0ff82
use a single printf call 2024-10-04 14:37:10 -05:00
4 changed files with 6 additions and 6 deletions

View file

@ -38,10 +38,10 @@ jobs:
- name: Update nix flake
run: |
printf '# Flake Lock\n\n```txt\n' >> $GITHUB_STEP_SUMMARY
nix flake update --commit-lock-file
git show -s --format='%B' >> $GITHUB_STEP_SUMMARY
printf '```\n' >> $GITHUB_STEP_SUMMARY
printf '# Flake Lock\n\n```txt\n%s```\n' \
"$(git show -s --format='%B')" \
>> $GITHUB_STEP_SUMMARY
- name: Pre-build oizys
run: nix build .

View file

@ -17,7 +17,7 @@ in
])
++ (with (flake.pkgs "self"); [
nimlangserver
nph
# nph
nimble
]);
};

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{
nph = pkgs.callPackage ./nim/nph { };
nph = pkgs.callPackage ./nim/nph { }; # doesn't compile with 2.2.0 :/
nimlangserver = pkgs.callPackage ./nim/nimlangserver { };
nimble = pkgs.callPackage ./nim/nimble { };
}

View file

@ -69,7 +69,7 @@ overlay:
nixosRebuild(subcmd, rest[1..^1])
proc ci(`ref`: string = "main") =
## trigger GHA update flow
## trigger GHA
if rest.len == 0: fatalQuit "expected workflow file name"
createDispatch(rest[0], `ref`)