kcl,kclvm,kclvm_cli: remove darwin.cctools
darwin.cctools is now just cctools so referencing it in staging and staging-next creates eval errors. However, given that cctools is already part of the darwin stdenv it is not necessary to include the package directly.
This commit is contained in:
parent
23e715c6b1
commit
b3d419c3e9
@ -30,9 +30,7 @@ buildGoModule rec {
|
||||
"-X=kcl-lang.io/cli/pkg/version.version=v${version}"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ makeWrapper installShellFiles ] ++ (
|
||||
lib.optionals stdenv.isDarwin [ darwin.cctools ]
|
||||
);
|
||||
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
||||
|
||||
buildInputs = [ kclvm kclvm_cli ] ++ (
|
||||
lib.optional stdenv.isDarwin [
|
||||
|
@ -29,7 +29,6 @@ rustPlatform.buildRustPackage rec {
|
||||
};
|
||||
|
||||
buildInputs = [ rustc ] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.cctools
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
darwin.apple_sdk.frameworks.CoreServices
|
||||
darwin.apple_sdk.frameworks.SystemConfiguration
|
||||
|
@ -24,7 +24,6 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
buildInputs = [ kclvm rustc ] ++ (
|
||||
lib.optionals stdenv.isDarwin [
|
||||
darwin.cctools
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
darwin.apple_sdk.frameworks.CoreServices
|
||||
darwin.apple_sdk.frameworks.SystemConfiguration
|
||||
|
Loading…
Reference in New Issue
Block a user