Compare commits

..

No commits in common. "8253720dc6d760946ad5453c3708e219e6532d87" and "0a0f8d1de1e08b2b18f42f09de4ab6d6317daa66" have entirely different histories.

4 changed files with 6 additions and 6 deletions

View file

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

View file

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

View file

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

View file

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