flake.nix: Exclude build support from flake exported packages and make pkgs/pkgs.nix obsolete again
This commit is contained in:
11
flake.nix
11
flake.nix
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user