mirror of
https://github.com/tale/headplane.git
synced 2026-08-11 06:16:52 +00:00
Maybe actually fix builds
This commit is contained in:
committed by
Aarnav Tale
parent
7a34a01dd0
commit
8b3d0e9bb6
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user