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-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";
|
2021-05-18 03:22:43 +01:00
|
|
|
version = "1.10.2";
|
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}";
|
2021-05-18 03:22:43 +01:00
|
|
|
sha256 = "sha256-uePCEYcYahsxcgA+GDcloqqo+dr7Y2N/9nps6Y79D58=";
|
2020-06-06 15:10:37 +01:00
|
|
|
};
|
2021-05-18 03:22:43 +01:00
|
|
|
cargoSha256 = "sha256-6fm1RWuTVWCE6nKgkC/SRQYRXGf9SGv7kAXWNqsdQS8=";
|
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-04-22 09:39:23 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv libobjc Security CoreServices Metal Foundation ];
|
2020-05-19 10:13:32 +01:00
|
|
|
|
|
|
|
# The rusty_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 place it in the locations it will require it in advance
|
2021-03-03 12:05:28 +00:00
|
|
|
preBuild =
|
2021-03-12 11:25:34 +00:00
|
|
|
let arch = rust.toRustTarget stdenv.hostPlatform; in
|
2021-03-03 12:05:28 +00:00
|
|
|
''
|
2021-03-12 11:25:34 +00:00
|
|
|
_librusty_v8_setup() {
|
2021-03-03 12:05:28 +00:00
|
|
|
for v in "$@"; do
|
2021-03-12 11:25:34 +00:00
|
|
|
install -D ${librusty_v8} "target/$v/gn_out/obj/librusty_v8.a"
|
2021-03-03 12:05:28 +00:00
|
|
|
done
|
|
|
|
}
|
2020-05-19 10:13:32 +01:00
|
|
|
|
2021-03-03 12:05:28 +00:00
|
|
|
# Copy over the `librusty_v8.a` file inside target/XYZ/gn_out/obj, symlink not allowed
|
2021-03-12 11:25:34 +00:00
|
|
|
_librusty_v8_setup "debug" "release" "${arch}/release"
|
2021-03-03 12:05:28 +00:00
|
|
|
'';
|
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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|