[chore] lockfiles: update dependencies #1

Merged
jalil merged 3 commits from update into main 2024-06-16 14:16:18 +02:00
2 changed files with 19 additions and 2 deletions
Showing only changes of commit a8fcc3bd4c - Show all commits

View file

@ -0,0 +1,14 @@
on: [push]
jobs:
check:
runs-on: nixos
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: nix --version
- run: nix flake check --keep-going
build:
runs-on: nixos
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: nix --version
- run: nix build --print-build-logs .#

View file

@ -14,8 +14,11 @@
in { in {
formatter = forEachSupportedSystem (system: nixpkgs.legacyPackages.${system}.alejandra); formatter = forEachSupportedSystem (system: nixpkgs.legacyPackages.${system}.alejandra);
packages = forEachSupportedSystem (system: { packages = forEachSupportedSystem (system: let
default = nixpkgs.legacyPackages.${system}.callPackage ./default.nix {}; webnsupdate = nixpkgs.legacyPackages.${system}.callPackage ./default.nix {};
in {
inherit webnsupdate;
default = webnsupdate;
}); });
overlays.default = final: prev: { overlays.default = final: prev: {