commit
428f4027f8
10 changed files with 93 additions and 8 deletions
|
@ -17,15 +17,15 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "deno";
|
||||
version = "1.29.3";
|
||||
version = "1.29.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "denoland";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-CH0uri8mnpcojuE8Pil/gsvEfDu/txjCevvGjqhiK1k=";
|
||||
sha256 = "sha256-oCBtqOm/d5dpIv70/Ht0M6izxdvm59LCiDHgcMcwLek=";
|
||||
};
|
||||
cargoSha256 = "sha256-I7MIcZeMQzgplza8YAqmuWaX4Gw3ZoDXHyzq/5opO4M=";
|
||||
cargoSha256 = "sha256-Y/1yfCeWleNrk5MgkIoAtkH8e6YSZWa+GF5RgLaZXQA=";
|
||||
|
||||
postPatch = ''
|
||||
# upstream uses lld on aarch64-darwin for faster builds
|
||||
|
@ -85,6 +85,7 @@ rustPlatform.buildRustPackage rec {
|
|||
'';
|
||||
|
||||
passthru.updateScript = ./update/update.ts;
|
||||
passthru.tests = callPackage ./tests { };
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://deno.land/";
|
||||
|
|
|
@ -11,11 +11,11 @@ let
|
|||
};
|
||||
in
|
||||
fetch_librusty_v8 {
|
||||
version = "0.60.0";
|
||||
version = "0.60.1";
|
||||
shas = {
|
||||
x86_64-linux = "sha256-2cq9fpKhx3ctZ5Lo2RofXD5bXfVUUN6bRtG453MQMW4=";
|
||||
aarch64-linux = "sha256-hjVUzCYdGkc3kMC/cSXDFOaqJmMBi83dqqASS5R2158=";
|
||||
x86_64-darwin = "sha256-EyYWfDU0eVFVzSVAHBFUbsppzpHtwe+Fd+z2ZmIub2c=";
|
||||
aarch64-darwin = "sha256-2VyEFqWsPZlkEDvNxkmrMCIKfsO7LAO+VvsjSMcyFUo=";
|
||||
x86_64-linux = "sha256-P8H+XJqrt9jdKM885L1epMldp+stwmEw+0Gtd2x3r4g=";
|
||||
aarch64-linux = "sha256-frHpBP2pL3o4efFLHP2r3zsWJrNT93yYu2Qkxv+7m8Y=";
|
||||
x86_64-darwin = "sha256-taewoYBkyikqWueLSD9dW1EDjzkV68Xplid1UaLZgRM=";
|
||||
aarch64-darwin = "sha256-s2YEVbuYpiT/qrmE37aXk13MetrnJo6l+s1Q2y6b5kU=";
|
||||
};
|
||||
}
|
||||
|
|
1
pkgs/development/web/deno/tests/basic.ts
Normal file
1
pkgs/development/web/deno/tests/basic.ts
Normal file
|
@ -0,0 +1 @@
|
|||
console.log(1 + 1)
|
68
pkgs/development/web/deno/tests/default.nix
Normal file
68
pkgs/development/web/deno/tests/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{ deno, runCommand, lib, testers }:
|
||||
let
|
||||
testDenoRun =
|
||||
name:
|
||||
{ args ? ""
|
||||
, dir ? ./. + "/${name}"
|
||||
, file ? "index.ts"
|
||||
, expected ? ""
|
||||
, expectFailure ? false
|
||||
}:
|
||||
let
|
||||
command = "deno run ${args} ${dir}/${file}";
|
||||
in
|
||||
runCommand "deno-test-${name}" { nativeBuildInputs = [ deno ]; meta.timeout = 60; } ''
|
||||
HOME=$(mktemp -d)
|
||||
if output=$(${command} 2>&1); then
|
||||
if [[ $output =~ '${expected}' ]]; then
|
||||
echo "Test '${name}' passed"
|
||||
touch $out
|
||||
else
|
||||
echo -n ${lib.escapeShellArg command} >&2
|
||||
echo " output did not match what was expected." >&2
|
||||
echo "The expected was:" >&2
|
||||
echo '${expected}' >&2
|
||||
echo "The output was:" >&2
|
||||
echo "$output" >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
if [[ "${toString expectFailure}" == "1" ]]; then
|
||||
echo "Test '${name}' failed as expected"
|
||||
touch $out
|
||||
exit 0
|
||||
fi
|
||||
echo -n ${lib.escapeShellArg command} >&2
|
||||
echo " returned a non-zero exit code." >&2
|
||||
echo "$output" >&2
|
||||
exit 1
|
||||
fi
|
||||
'';
|
||||
in
|
||||
(lib.mapAttrs testDenoRun {
|
||||
basic = {
|
||||
dir = ./.;
|
||||
file = "basic.ts";
|
||||
expected = "2";
|
||||
};
|
||||
import-json = {
|
||||
expected = "hello from JSON";
|
||||
};
|
||||
import-ts = {
|
||||
expected = "hello from ts";
|
||||
};
|
||||
read-file = {
|
||||
args = "--allow-read";
|
||||
expected = "hello from a file";
|
||||
};
|
||||
fail-read-file = {
|
||||
expectFailure = true;
|
||||
dir = ./read-file;
|
||||
};
|
||||
}) //
|
||||
{
|
||||
version = testers.testVersion {
|
||||
package = deno;
|
||||
command = "deno --version";
|
||||
};
|
||||
}
|
1
pkgs/development/web/deno/tests/import-json/data.json
Normal file
1
pkgs/development/web/deno/tests/import-json/data.json
Normal file
|
@ -0,0 +1 @@
|
|||
{ "msg": "hello from JSON" }
|
2
pkgs/development/web/deno/tests/import-json/index.ts
Normal file
2
pkgs/development/web/deno/tests/import-json/index.ts
Normal file
|
@ -0,0 +1,2 @@
|
|||
import file from "./data.json" assert { type: "json" };
|
||||
console.log(file.msg);
|
3
pkgs/development/web/deno/tests/import-ts/index.ts
Normal file
3
pkgs/development/web/deno/tests/import-ts/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { sayHello } from "./lib.ts"
|
||||
|
||||
sayHello("ts")
|
3
pkgs/development/web/deno/tests/import-ts/lib.ts
Normal file
3
pkgs/development/web/deno/tests/import-ts/lib.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
export function sayHello(thing: string) {
|
||||
console.log(`hello from ${thing}`);
|
||||
}
|
1
pkgs/development/web/deno/tests/read-file/data.txt
Normal file
1
pkgs/development/web/deno/tests/read-file/data.txt
Normal file
|
@ -0,0 +1 @@
|
|||
hello from a file
|
5
pkgs/development/web/deno/tests/read-file/index.ts
Normal file
5
pkgs/development/web/deno/tests/read-file/index.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
// trim 'file://' prefix
|
||||
const thisDir = Deno.mainModule.substring(7, Deno.mainModule.length);
|
||||
const getParent = (path: string) => path.substring(0, path.lastIndexOf("/"))
|
||||
const text = await Deno.readTextFile(getParent(thisDir) + "/data.txt");
|
||||
console.log(text);
|
Loading…
Reference in a new issue