about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
AgeCommit message (Collapse)AuthorFilesLines
2022-01-30wasmtime: use python3Robert Schütz1-2/+2
2022-01-16python,pythonPackages: make aliasesRobert Schütz1-2/+2
Since aliases are disallowed in nixpkgs, this makes usage of Python 2 which is EOL more explicit.
2021-05-08treewide: fix cargoSha256/cargoHashDaniël de Kok1-1/+1
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
2021-04-30llvmPackages: Multuple outputs for everythtingAndrew Childs1-1/+1
Also begin to start work on cross compilation, though that will have to be finished later. The patches are based on the first version of https://reviews.llvm.org/D99484. It's very annoying to do the back-porting but the review has uncovered nothing super major so I'm fine sticking with what I've got. Beyond making the outputs work, I also strove to re-sync the packages, as they have been drifting pointlessly apart for some time. ---- Other misc notes, highly incomplete - lvm-config-native and llvm-config are put in `dev` because they are tools just for build time. - Clang no longer has an lld dep. That was introduced in db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help finding lld when it is used we should just pass it flags / put in the resource dir. Providing it at build time increases critical path length for no good reason. ---- A note on `nativeCC`: `stdenv` takes tools from the previous stage, so: 1. `pkgsBuildBuild`: `(?1, x, x)` 2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)` while: 1. `pkgsBuildBuild`: `(?1, x, x)` 2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)` 3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-11-11wasmtime: 0.20.0 -> 0.21.0Gabor Greif1-3/+3
2020-11-01treewide: simplify rev/repo arguments in srcPavol Rusnak1-1/+1
+ use fetchFromGithub where possible
2020-10-07wasmtime: 0.19.0 -> 0.20.0Gabor Greif1-4/+4
2020-07-22wasmtime: 0.18.0 -> 0.19.0Gabor Greif1-3/+3
2020-07-03wasmtime: 0.17.0 -> 0.18.0Gabor Greif1-2/+2
https://github.com/bytecodealliance/wasmtime/releases/tag/v0.18.0
2020-06-10wasmtime: 0.16.0 -> 0.17.0Gabor Greif1-3/+3
https://github.com/bytecodealliance/wasmtime/releases/tag/v0.17.0
2020-05-16wasmtime-0.16.0: re-enable tests on DarwinGabor Greif1-3/+1
The issue https://github.com/bytecodealliance/wasmtime/issues/1556 appears to be fixed.
2020-05-16wasmtime: 0.15.0 -> 0.16.0Gabor Greif1-3/+3
2020-05-04Disable test suite on darwinJoachim Breitner1-1/+3
no regression over `master` where the test suite didn’t run at all
2020-05-02wasmtime : 0.12.0 -> 0.15.0Joachim Breitner1-4/+4
and enable tests again, now that upstream fixed stuff.
2020-04-18wasmtime-0.12.0: fix cargoSha256Gabor Greif1-1/+1
2020-04-14wasmtime: Do not prefix version with `v`Joachim Breitner1-2/+2
it seems that this breaks the use of `nix-env -i wasmtime`
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-03-01wasmtime: bump to v0.12.0 (from v0.8.0)Gabor Greif2-2290/+5
- moved to modern cargo fetcher - removed patch (not needed) - disabled test (due to bytecodealliance/wasmtime#1197)
2020-02-13treewide: change fetchCargoTarball default to opt-outBenjamin Hipple1-0/+3
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
2020-01-07wasmtime: 20191111 -> v0.8.0Joachim Breitner2-515/+519
2019-11-25The github repo has movedJoachim Breitner1-1/+1
2019-11-25wasmtime: 20191018 -> 20191111Joachim Breitner2-295/+386
With this bump, we pull in support for building on darwin, i.e. https://github.com/bytecodealliance/wasmtime/issues/516
2019-10-18wasmtime: 20190521 -> 20191018Joachim Breitner2-645/+1218
this upgrade fixes a problem with running trapping WebAssembly code for me: ``` error: failed to process main module `_out/issue36.wasm` caused by: Instantiation error: Trap occurred while invoking start function: wasm trap: unreachable, source location: @2eb9 ```
2019-08-28treewide: remove redundant recvolth1-1/+1
2019-06-10wasmtime: 0.1.0 -> 20190521Lorenzo Manacorda2-205/+338
2019-04-30wasmtime: fix hashMatthew Bauer1-1/+1
2019-04-23wasmtime: init and use for emulationMatthew Bauer2-0/+1512
This isn’t really an "emulator" but it’s the closest concept we have right now.