85 lines
2 KiB
Nix
85 lines
2 KiB
Nix
{
|
|
buildGoModule,
|
|
darwin,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
kclvm_cli,
|
|
kclvm,
|
|
lib,
|
|
nix-update-script,
|
|
stdenv,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kcl";
|
|
version = "0.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kcl-lang";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-Ron+8pK/1VYwL0HO97QvBpWhKeAlhM+sVi1Djc++4n4=";
|
|
};
|
|
|
|
vendorHash = "sha256-yvhRHzVIkPE7ZDaX+98K4PW3/uh/6esxc/1KwpOvGfY=";
|
|
|
|
subPackages = [ "cmd/kcl" ];
|
|
|
|
ldflags = [
|
|
"-w -s"
|
|
"-X=kcl-lang.io/cli/pkg/version.version=v${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
kclvm
|
|
kclvm_cli
|
|
]
|
|
++ (lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
]);
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
export HOME=$(mktemp -d)
|
|
for shell in bash fish zsh; do
|
|
installShellCompletion --cmd kcl \
|
|
--$shell <($out/bin/kcl completion $shell)
|
|
done
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
set -o pipefail
|
|
$out/bin/kcl --version | grep $version
|
|
$out/bin/kcl <(echo 'hello = "KCL"') | grep "hello: KCL"
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
# By default, libs and bins are stripped. KCL will crash on darwin if they are.
|
|
dontStrip = stdenv.hostPlatform.isDarwin;
|
|
|
|
doCheck = true;
|
|
|
|
updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "A command line interface for KCL programming language";
|
|
changelog = "https://github.com/kcl-lang/cli/releases/tag/v${version}";
|
|
homepage = "https://github.com/kcl-lang/cli";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [
|
|
peefy
|
|
selfuryon
|
|
];
|
|
mainProgram = "kcl";
|
|
broken = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
};
|
|
}
|