reorganise

This commit is contained in:
andromeda
2026-03-06 16:53:18 +01:00
parent fdf5bb9daf
commit d35463e195
17 changed files with 89 additions and 95 deletions

View File

@@ -18,14 +18,15 @@
...
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
pkgs = nixpkgs.legacyPackages.${system};
pkgsWithRustOverlay = import nixpkgs {
inherit system;
overlays = [(import rust-overlay)];
};
in {
packages.${system} = {
bootler = pkgs.callPackage ./nix/pkgs/bootler.nix {};
bootle = pkgs.callPackage ./nix/pkgs/bootle.nix {
bootler = pkgs.callPackage ./bootler/package.nix {};
bootle = pkgsWithRustOverlay.callPackage ./bootle/package.nix {
naersk = naersk;
bootler = self.packages.${system}.bootler;
};