2021-03-03 12:05:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-03-12 11:25:34 +00:00
|
|
|
, callPackage
|
2020-05-19 10:13:32 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rust
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
2021-04-22 09:39:23 +01:00
|
|
|
, libiconv
|
2021-03-14 04:20:00 +00:00
|
|
|
, libobjc
|
2020-05-19 10:13:32 +01:00
|
|
|
, Security
|
|
|
|
, CoreServices
|
2021-03-14 04:20:00 +00:00
|
|
|
, Metal
|
|
|
|
, Foundation
|
2021-05-18 15:34:56 +01:00
|
|
|
, QuartzCore
|
2021-03-12 11:25:34 +00:00
|
|
|
, librusty_v8 ? callPackage ./librusty_v8.nix { }
|
2020-05-19 10:13:32 +01:00
|
|
|
}:
|
2021-03-03 12:05:28 +00:00
|
|
|
|
2020-05-19 10:13:32 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-06-06 15:10:37 +01:00
|
|
|
pname = "deno";
|
2022-01-20 21:04:21 +00:00
|
|
|
version = "1.18.0";
|
2020-05-19 10:13:32 +01:00
|
|
|
|
2020-06-06 15:10:37 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "denoland";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-01-20 21:04:21 +00:00
|
|
|
sha256 = "sha256-ov2zCINh4uH5pvhML1fgpnxFhWs680bdv9oqUESFkpw=";
|
2020-06-06 15:10:37 +01:00
|
|
|
};
|
2022-01-20 21:04:21 +00:00
|
|
|
cargoSha256 = "sha256-qYz5p+3QNA/zir2M9/aWxKYOMYI01OsIWZCJ4njjFPc=";
|
2020-05-19 10:13:32 +01:00
|
|
|
|
2020-06-05 16:20:39 +01:00
|
|
|
# Install completions post-install
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-05-19 10:13:32 +01:00
|
|
|
|
2021-05-12 14:52:47 +01:00
|
|
|
buildAndTestSubdir = "cli";
|
|
|
|
|
2021-05-18 15:34:56 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin
|
|
|
|
[ libiconv libobjc Security CoreServices Metal Foundation QuartzCore ];
|
2020-05-19 10:13:32 +01:00
|
|
|
|
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 10:13:32 +01:00
|
|
|
|
2020-06-05 16:20:39 +01:00
|
|
|
# Tests have some inconsistencies between runs with output integration tests
|
|
|
|
# Skipping until resolved
|
|
|
|
doCheck = false;
|
2020-05-19 10:13:32 +01: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 10:13:32 +01: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 10:13:32 +01: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 15:42:45 +01:00
|
|
|
passthru.updateScript = ./update/update.ts;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-19 10:13:32 +01: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 10:13:32 +01: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 10:13:32 +01:00
|
|
|
};
|
|
|
|
}
|