devshell/clan-cli: fix CLAN_PROVIDED_PACKAGES having too many packages

This commit is contained in:
Jörg Thalheim
2025-04-21 13:23:03 +02:00
parent 80e739bd1b
commit df08fea1c1
2 changed files with 2 additions and 3 deletions

View File

@@ -127,7 +127,7 @@
in
{
devShells.clan-cli = pkgs.callPackage ./shell.nix {
inherit (self'.packages) clan-cli clan-cli-full;
inherit (self'.packages) clan-cli;
inherit self';
};
packages = {

View File

@@ -2,7 +2,6 @@
lib,
nix-unit,
clan-cli,
clan-cli-full,
mkShell,
ruff,
self',
@@ -26,7 +25,7 @@ mkShell {
inputsFrom = [ self'.devShells.default ];
CLAN_PROVIDED_PACKAGES = lib.concatStringsSep ":" (
lib.attrNames clan-cli-full.passthru.runtimeDependenciesMap
lib.attrNames clan-cli.passthru.runtimeDependenciesMap
);
shellHook = ''