mirror of
https://github.com/0xrsydn/nix-hermes-agent.git
synced 2026-08-07 00:53:52 +00:00
feat: add hermes-agent-nightly version
This commit is contained in:
parent
b307e92b09
commit
22fb4d0195
1 changed files with 8 additions and 0 deletions
|
|
@ -16,10 +16,12 @@
|
|||
system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
lib = pkgs.lib;
|
||||
in
|
||||
{
|
||||
packages = {
|
||||
hermes-agent = pkgs.callPackage ./package.nix { };
|
||||
hermes-agent-nightly = import ./nightly.nix { inherit pkgs; };
|
||||
default = self.packages.${system}.hermes-agent;
|
||||
};
|
||||
|
||||
|
|
@ -28,6 +30,11 @@
|
|||
inherit pkgs;
|
||||
inherit (self.packages.${system}) hermes-agent;
|
||||
})
|
||||
// (lib.mapAttrs' (name: value: lib.nameValuePair "nightly-${name}" value)
|
||||
(import ./checks.nix {
|
||||
inherit pkgs;
|
||||
hermes-agent = self.packages.${system}.hermes-agent-nightly;
|
||||
}))
|
||||
// {
|
||||
skills-coexistence = import ./tests/skills-coexistence.nix {
|
||||
inherit self nixpkgs system;
|
||||
|
|
@ -47,6 +54,7 @@
|
|||
|
||||
overlays.default = final: prev: {
|
||||
hermes-agent = final.callPackage ./package.nix { };
|
||||
hermes-agent-nightly = import ./nightly.nix { pkgs = final; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue