mirror of
https://github.com/aaddrick/claude-desktop-debian.git
synced 2026-05-17 00:26:21 +03:00
fix: move claude-desktop-fhs to let block so default can reference it
The packages attrset referenced claude-desktop-fhs for the default attribute, but without rec the name wasn't in scope. Move the definition to the let block and use inherit instead. Co-Authored-By: Claude <claude@anthropic.com>
This commit is contained in:
@@ -15,6 +15,9 @@
|
||||
claude-desktop = pkgs.callPackage ./nix/claude-desktop.nix {
|
||||
inherit node-pty;
|
||||
};
|
||||
claude-desktop-fhs = pkgs.callPackage ./nix/fhs.nix {
|
||||
inherit claude-desktop;
|
||||
};
|
||||
in {
|
||||
_module.args.pkgs = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
@@ -24,10 +27,7 @@
|
||||
};
|
||||
|
||||
packages = {
|
||||
inherit claude-desktop;
|
||||
claude-desktop-fhs = pkgs.callPackage ./nix/fhs.nix {
|
||||
inherit claude-desktop;
|
||||
};
|
||||
inherit claude-desktop claude-desktop-fhs;
|
||||
default = claude-desktop-fhs;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user