core/flake.nix

29 lines
703 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{
inputs = {
nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
lib = import ./lib;
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
in
{
nixPackages = forAllSystems (system:
(import nixpkgs { inherit system; })
);
# auxPackages = forAllSystems (system:
# (import ./. { inherit system; })
# );
# To test, run nix build .#tests.x86_64-linux.release
tests = forAllSystems (system:
({
systems = import ./lib/tests/systems.nix;
release = import ./lib/tests/release.nix { pkgs = self.nixPackages.${system}; };
})
);
};
}