90 lines
1.9 KiB
Nix
90 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
capnproto,
|
|
extra-cmake-modules,
|
|
fetchFromGitHub,
|
|
fontconfig,
|
|
installShellFiles,
|
|
llvmPackages,
|
|
nix-update-script,
|
|
openssl,
|
|
pkg-config,
|
|
protobuf,
|
|
rust-jemalloc-sys,
|
|
rustPlatform,
|
|
zlib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "turbo-unwrapped";
|
|
version = "2.5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vercel";
|
|
repo = "turborepo";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-QQTHgSaVDCnhbxhETo2bSGdtEcbL9lrWed+EpH3Fydk=";
|
|
};
|
|
|
|
cargoHash = "sha256-PQOUWcUlxATzfgf9QbZT+vLs20/tR4Xmv0lPadzQoZQ=";
|
|
|
|
nativeBuildInputs = [
|
|
capnproto
|
|
extra-cmake-modules
|
|
installShellFiles
|
|
pkg-config
|
|
protobuf
|
|
]
|
|
# https://github.com/vercel/turbo/blob/ea740706e0592b3906ab34c7cfa1768daafc2a84/CONTRIBUTING.md#linux-dependencies
|
|
++ lib.optional stdenv.hostPlatform.isLinux llvmPackages.bintools;
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
openssl
|
|
rust-jemalloc-sys
|
|
zlib
|
|
];
|
|
|
|
cargoBuildFlags = [
|
|
"--package"
|
|
"turbo"
|
|
];
|
|
|
|
# Browser tests time out with chromium and google-chrome
|
|
doCheck = false;
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd turbo \
|
|
--bash <($out/bin/turbo completion bash) \
|
|
--fish <($out/bin/turbo completion fish) \
|
|
--zsh <($out/bin/turbo completion zsh)
|
|
'';
|
|
|
|
env = {
|
|
# nightly features are used
|
|
RUSTC_BOOTSTRAP = 1;
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"v(\\d+\\.\\d+\\.\\d+)$"
|
|
];
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "High-performance build system for JavaScript and TypeScript codebases";
|
|
homepage = "https://turbo.build/";
|
|
changelog = "https://github.com/vercel/turborepo/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
dlip
|
|
getchoo
|
|
];
|
|
mainProgram = "turbo";
|
|
};
|
|
})
|