Maybe actually fix builds
This commit is contained in:
parent
7a34a01dd0
commit
8b3d0e9bb6
3 changed files with 53 additions and 25 deletions
|
|
@ -29,7 +29,8 @@ rec {
|
|||
in rec {
|
||||
formatter = pkgs.alejandra;
|
||||
packages = {
|
||||
headplane = pkgs.callPackage ./nix/package.nix {};
|
||||
hp_ssh_wasm = pkgs.callPackage ./nix/wasm.nix {};
|
||||
headplane = pkgs.callPackage ./nix/package.nix { hp_ssh_wasm = packages.hp_ssh_wasm; };
|
||||
headplane-agent = pkgs.callPackage ./nix/agent.nix {};
|
||||
};
|
||||
checks.default = pkgs.symlinkJoin {
|
||||
|
|
@ -61,7 +62,8 @@ rec {
|
|||
})
|
||||
// {
|
||||
overlays.default = final: prev: {
|
||||
headplane = final.callPackage ./nix/package.nix {};
|
||||
hp_ssh_wasm = final.callPackage ./nix/wasm.nix {};
|
||||
headplane = final.callPackage ./nix/package.nix { hp_ssh_wasm = final.hp_ssh_wasm; };
|
||||
headplane-agent = final.callPackage ./nix/agent.nix {};
|
||||
};
|
||||
nixosModules.headplane = import ./nix/module.nix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue