2024-09-26 11:04:55 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
callPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
cmake,
|
|
|
|
protobuf,
|
|
|
|
installShellFiles,
|
|
|
|
libiconv,
|
|
|
|
darwin,
|
2024-10-11 05:15:48 +00:00
|
|
|
librusty_v8 ? callPackage ./librusty_v8.nix {
|
|
|
|
inherit (callPackage ./fetchers.nix { }) fetchLibrustyV8;
|
|
|
|
},
|
2020-05-29 06:06:01 +00:00
|
|
|
}:
|
2024-10-11 05:15:48 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
canExecute = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
in
|
2020-06-18 07:06:33 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-29 06:06:01 +00:00
|
|
|
pname = "deno";
|
2024-10-23 06:41:50 +00:00
|
|
|
version = "2.0.2";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-05-29 06:06:01 +00:00
|
|
|
owner = "denoland";
|
2024-09-26 11:04:55 +00:00
|
|
|
repo = "deno";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-10-23 06:41:50 +00:00
|
|
|
hash = "sha256-nbwLkkO1ucRmlgGDRCJLHPpu4lk0xLQvz3wWpq7rics=";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
2023-08-10 07:59:29 +00:00
|
|
|
|
2024-10-23 06:41:50 +00:00
|
|
|
cargoHash = "sha256-y/hAEu8c/CFS4mfp4f/pvPJRz4cxGoi39uIUbn5J+Pw=";
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# upstream uses lld on aarch64-darwin for faster builds
|
|
|
|
# within nix lld looks for CoreFoundation rather than CoreFoundation.tbd and fails
|
2024-01-02 11:29:13 +00:00
|
|
|
substituteInPlace .cargo/config.toml --replace "-fuse-ld=lld " ""
|
2022-04-27 09:35:20 +00:00
|
|
|
'';
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
# uses zlib-ng but can't dynamically link yet
|
|
|
|
# https://github.com/rust-lang/libz-sys/issues/158
|
|
|
|
nativeBuildInputs = [
|
|
|
|
# required by libz-ng-sys crate
|
|
|
|
cmake
|
|
|
|
# required by deno_kv crate
|
|
|
|
protobuf
|
|
|
|
installShellFiles
|
|
|
|
];
|
2023-04-29 16:46:19 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (
|
2024-09-26 11:04:55 +00:00
|
|
|
[
|
|
|
|
libiconv
|
|
|
|
darwin.libobjc
|
|
|
|
]
|
2024-04-21 15:54:59 +00:00
|
|
|
++ (with darwin.apple_sdk_11_0.frameworks; [
|
2024-01-02 11:29:13 +00:00
|
|
|
Security
|
|
|
|
CoreServices
|
|
|
|
Metal
|
|
|
|
MetalPerformanceShaders
|
|
|
|
Foundation
|
|
|
|
QuartzCore
|
|
|
|
])
|
2023-04-29 16:46:19 +00:00
|
|
|
);
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
buildAndTestSubdir = "cli";
|
|
|
|
|
2024-10-11 05:15:48 +00:00
|
|
|
# work around "error: unknown warning group '-Wunused-but-set-parameter'"
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-unknown-warning-option";
|
2021-12-06 16:07:01 +00:00
|
|
|
# The v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
|
|
|
|
# To avoid this we pre-download the file and export it via RUSTY_V8_ARCHIVE
|
2024-10-11 05:15:48 +00:00
|
|
|
env.RUSTY_V8_ARCHIVE = librusty_v8;
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
# Tests have some inconsistencies between runs with output integration tests
|
|
|
|
# Skipping until resolved
|
|
|
|
doCheck = false;
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
preInstall = ''
|
|
|
|
find ./target -name libswc_common${stdenv.hostPlatform.extensions.sharedLibrary} -delete
|
|
|
|
'';
|
|
|
|
|
2024-10-11 05:15:48 +00:00
|
|
|
postInstall = lib.optionalString (canExecute) ''
|
2020-11-12 09:05:59 +00:00
|
|
|
installShellCompletion --cmd deno \
|
|
|
|
--bash <($out/bin/deno completions bash) \
|
|
|
|
--fish <($out/bin/deno completions fish) \
|
|
|
|
--zsh <($out/bin/deno completions zsh)
|
2020-05-29 06:06:01 +00:00
|
|
|
'';
|
|
|
|
|
2024-10-11 05:15:48 +00:00
|
|
|
doInstallCheck = canExecute;
|
|
|
|
installCheckPhase = lib.optionalString (canExecute) ''
|
2021-03-19 17:17:44 +00:00
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/deno --help
|
|
|
|
$out/bin/deno --version | grep "deno ${version}"
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
passthru.updateScript = ./update/update.ts;
|
2023-02-02 18:25:31 +00:00
|
|
|
passthru.tests = callPackage ./tests { };
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-05-29 06:06:01 +00:00
|
|
|
homepage = "https://deno.land/";
|
2021-03-19 17:17:44 +00:00
|
|
|
changelog = "https://github.com/denoland/deno/releases/tag/v${version}";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Secure runtime for JavaScript and TypeScript";
|
2020-05-29 06:06:01 +00:00
|
|
|
longDescription = ''
|
|
|
|
Deno aims to be a productive and secure scripting environment for the modern programmer.
|
|
|
|
Deno will always be distributed as a single executable.
|
|
|
|
Given a URL to a Deno program, it is runnable with nothing more than the ~15 megabyte zipped executable.
|
|
|
|
Deno explicitly takes on the role of both runtime and package manager.
|
|
|
|
It uses a standard browser-compatible protocol for loading modules: URLs.
|
|
|
|
Among other things, Deno is a great replacement for utility scripts that may have been historically written with
|
|
|
|
bash or python.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
2023-10-09 19:29:22 +00:00
|
|
|
mainProgram = "deno";
|
2020-05-29 06:06:01 +00:00
|
|
|
maintainers = with maintainers; [ jk ];
|
2024-09-26 11:04:55 +00:00
|
|
|
platforms = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-darwin"
|
|
|
|
];
|
|
|
|
# NOTE: `aligned_alloc` error on darwin SDK < 10.15. Can't do usual overrideSDK with rust toolchain in current implementation.
|
|
|
|
# Should be fixed with darwin SDK refactor and can be revisited.
|
2024-10-04 16:56:33 +00:00
|
|
|
badPlatforms = [ "x86_64-darwin" ];
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
}
|