2021-03-03 12:05:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-03-12 11:25:34 +00:00
|
|
|
, callPackage
|
2020-05-19 09:13:32 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
2022-07-13 16:13:17 +00:00
|
|
|
, tinycc
|
2021-04-22 08:39:23 +00:00
|
|
|
, libiconv
|
2021-03-14 04:20:00 +00:00
|
|
|
, libobjc
|
2020-05-19 09:13:32 +00:00
|
|
|
, Security
|
|
|
|
, CoreServices
|
2021-03-14 04:20:00 +00:00
|
|
|
, Metal
|
|
|
|
, Foundation
|
2021-05-18 14:34:56 +00:00
|
|
|
, QuartzCore
|
2021-03-12 11:25:34 +00:00
|
|
|
, librusty_v8 ? callPackage ./librusty_v8.nix { }
|
2020-05-19 09:13:32 +00:00
|
|
|
}:
|
2021-03-03 12:05:28 +00:00
|
|
|
|
2020-05-19 09:13:32 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-06-06 14:10:37 +00:00
|
|
|
pname = "deno";
|
2022-10-07 08:22:00 +00:00
|
|
|
version = "1.26.1";
|
2020-05-19 09:13:32 +00:00
|
|
|
|
2020-06-06 14:10:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "denoland";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-10-07 08:22:00 +00:00
|
|
|
sha256 = "sha256-rnHs0vMchUXB6iNXyhdN9uDzdyAIPgOxsQLKPHJ46jw=";
|
2020-06-06 14:10:37 +00:00
|
|
|
};
|
2022-10-07 08:22:00 +00:00
|
|
|
cargoSha256 = "sha256-YHHhrni2HLUIQIw090StfFhkYcipqnoYewEFLw3F0Pg=";
|
2022-04-22 13:39:16 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# upstream uses lld on aarch64-darwin for faster builds
|
|
|
|
# within nix lld looks for CoreFoundation rather than CoreFoundation.tbd and fails
|
2022-07-03 21:17:45 +00:00
|
|
|
substituteInPlace .cargo/config.toml --replace '"-C", "link-arg=-fuse-ld=lld"' ""
|
2022-04-22 13:39:16 +00:00
|
|
|
'';
|
2020-05-19 09:13:32 +00:00
|
|
|
|
2020-06-05 15:20:39 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-05-18 14:34:56 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin
|
|
|
|
[ libiconv libobjc Security CoreServices Metal Foundation QuartzCore ];
|
2020-05-19 09:13:32 +00:00
|
|
|
|
2022-07-13 16:13:17 +00:00
|
|
|
buildAndTestSubdir = "cli";
|
|
|
|
|
2021-11-18 19:24:59 +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
|
|
|
|
RUSTY_V8_ARCHIVE = librusty_v8;
|
2020-05-19 09:13:32 +00:00
|
|
|
|
2022-07-13 16:13:17 +00:00
|
|
|
# The deno_ffi package currently needs libtcc.a on linux and macos and will try to compile it at build time
|
|
|
|
# To avoid this we point it to our copy (dir)
|
|
|
|
# In the future tinycc will be replaced with asm
|
2022-08-31 11:36:48 +00:00
|
|
|
libtcc = tinycc.overrideAttrs (oa: {
|
|
|
|
makeFlags = [ "libtcc.a" ];
|
|
|
|
# tests want tcc binary
|
|
|
|
doCheck = false;
|
|
|
|
outputs = [ "out" ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/
|
|
|
|
mv libtcc.a $out/lib/
|
|
|
|
'';
|
|
|
|
# building the whole of tcc on darwin is broken in nixpkgs
|
|
|
|
# but just building libtcc.a works fine so mark this as unbroken
|
|
|
|
meta.broken = false;
|
|
|
|
});
|
2022-08-30 10:35:57 +00:00
|
|
|
TCC_PATH = "${libtcc}/lib";
|
2022-07-13 16:13:17 +00:00
|
|
|
|
2020-06-05 15:20:39 +00:00
|
|
|
# Tests have some inconsistencies between runs with output integration tests
|
|
|
|
# Skipping until resolved
|
|
|
|
doCheck = false;
|
2020-05-19 09:13:32 +00:00
|
|
|
|
2021-12-17 16:45:35 +00:00
|
|
|
preInstall = ''
|
2021-12-18 13:09:22 +00:00
|
|
|
find ./target -name libswc_common${stdenv.hostPlatform.extensions.sharedLibrary} -delete
|
2021-12-17 16:45:35 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-19 09:13:32 +00:00
|
|
|
postInstall = ''
|
2020-11-09 21:36:07 +00:00
|
|
|
installShellCompletion --cmd deno \
|
|
|
|
--bash <($out/bin/deno completions bash) \
|
2020-12-16 10:59:30 +00:00
|
|
|
--fish <($out/bin/deno completions fish) \
|
|
|
|
--zsh <($out/bin/deno completions zsh)
|
2020-05-19 09:13:32 +00:00
|
|
|
'';
|
|
|
|
|
2021-03-03 12:05:28 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/deno --help
|
|
|
|
$out/bin/deno --version | grep "deno ${version}"
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2020-06-06 14:42:45 +00:00
|
|
|
passthru.updateScript = ./update/update.ts;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-19 09:13:32 +00:00
|
|
|
homepage = "https://deno.land/";
|
2021-03-03 12:05:28 +00:00
|
|
|
changelog = "https://github.com/denoland/deno/releases/tag/v${version}";
|
2020-05-19 09:13:32 +00:00
|
|
|
description = "A secure runtime for JavaScript and TypeScript";
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ jk ];
|
2021-03-03 12:05:28 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
2020-05-19 09:13:32 +00:00
|
|
|
};
|
|
|
|
}
|