1
0

flake.nix: Exclude build support from flake exported packages and make pkgs/pkgs.nix obsolete again

This commit is contained in:
2025-06-28 15:03:46 +02:00
parent a754af1ee9
commit 1d927638c5
5 changed files with 10 additions and 6 deletions

View File

@@ -135,14 +135,17 @@
};
overlays = {
nixfilesInputs = import ./flake/overlay.nix inputs;
nixfilesInputs = import ./flake/inputs-overlay.nix inputs;
clerie = import ./pkgs/overlay.nix;
clerie-build-support = import ./pkgs/build-support/overlay.nix;
default = self.overlays.clerie;
};
packages = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: let
pkgs = localNixpkgs.${system};
in builtins.mapAttrs (name: value: pkgs."${name}") (import ./pkgs/pkgs.nix));
packages = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system:
let
pkgs = localNixpkgs.${system};
in builtins.mapAttrs (name: value: pkgs."${name}") (self.overlays.clerie null null)
);
inherit lib self;