feat: add hydra jobs to build all packages

This commit is contained in:
aviac 2025-10-16 09:15:26 +02:00 committed by Jade Ellis
parent c1c165ab48
commit 1b2224fac6
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2
2 changed files with 11 additions and 0 deletions

View file

@ -4,5 +4,7 @@
./packages
./shells
./tests
./hydra.nix
];
}

9
nix/hydra.nix Normal file
View file

@ -0,0 +1,9 @@
{ inputs, ... }:
let
lib = inputs.nixpkgs.lib;
in
{
flake.hydraJobs.packages = builtins.mapAttrs (
_name: lib.hydraJob
) inputs.self.packages.x86_64-linux;
}