Commit Graph

47 Commits

Author SHA1 Message Date
Rafael Fernández López
a8153ecbd8
wasmtime: 3.0.1 -> 4.0.0 2022-12-24 14:06:50 +01:00
R. Ryantm
99b0a7d6ea wasmtime: 3.0.0 -> 3.0.1 2022-12-07 12:34:05 +00:00
R. Ryantm
de50b1dc24 wasmtime: 2.0.2 -> 3.0.0 2022-11-23 12:08:11 +00:00
Rafael Fernández López
2abb7efadb
wasmtime: 2.0.1 -> 2.0.2 2022-11-11 10:53:04 +01:00
R. Ryantm
3023508eba wasmtime: 2.0.0 -> 2.0.1 2022-10-28 00:44:32 +00:00
Rafael Fernández López
1f5628592e
wasmtime: 1.0.1 -> 2.0.0 2022-10-21 10:02:34 +02:00
R. Ryantm
91b1023805 wasmtime: 1.0.0 -> 1.0.1 2022-09-27 03:44:24 +00:00
Pavol Rusnak
0eb4f8311c
wasmtime: 0.40.1 -> 1.0.0 2022-09-20 20:58:23 +02:00
R. Ryantm
848c87cf98 wasmtime: 0.40.0 -> 0.40.1 2022-09-01 18:03:43 +00:00
Michael Livshin
153f2f6f06
wasmtime: build c-api, bump version to 0.40.0
* build wasmtime c-api libraries & headers as the "dev" output.

* bump wasmtime source version to 0.40.0.
2022-08-25 00:34:10 +02:00
Rafael Fernández López
9c59fd919f
wasmtime: disable tests on x86_64-darwin
Remove tests on x86_64-darwin to avoid specific false errors due to
the way Hydra runners are set up for this architecture.

On this platform, on Hydra runners we see: `SIMD support requires
SSE3, SSSE3, SSE4.1, and SSE4.2 on x86_64.` present in all failing
tests.

Thus, do not run tests on this platform to avoid false reports of this
derivation being broken, because Hydra runners are set up in a way
that this CPU features are not available.

An example of automation marking this derivation as broken because the
Hydra runs were reporting failures: 03bc571744.
2022-08-21 10:58:29 +02:00
Thomas Gerbet
03119abf6b wasmtime: 0.38.0 -> 0.39.1
https://github.com/bytecodealliance/wasmtime/blob/v0.39.1/RELEASES.md

Fixes CVE-2022-31146 and CVE-2022-31169.
2022-08-05 18:48:57 +02:00
Rafael Fernández López
d4ed4c52e1
wasmtime: 0.37.0 -> 0.38.0 2022-06-23 07:52:44 +03:00
Rafael Fernández López
7042b2fd9c
wasmtime: remove unneeded dependencies
Also, add `ereslibre` as a maintainer
2022-06-23 07:52:35 +03:00
Rick van Schijndel
03bc571744
treewide: pkgs/development: mark broken for darwin 2022-05-30 13:42:57 +02:00
Rafael Fernández López
593dfc4d9d wasmtime: 0.36.0 -> 0.37.0
Re-enable darwin platform.
2022-05-22 07:36:16 -04:00
Rafael Fernández López
9c653ec608 wasmtime: 0.35.2 -> 0.36.0 2022-04-21 07:57:16 -04:00
Rafael Fernández López
1865515d63 wasmtime: make derivation available only on linux for now 2022-04-03 08:11:58 -04:00
Rafael Fernández López
d233c169c7 Fix wasmtime build
Provide a specific path for the v8 project, so `wasmtime` dependency
`rusty_v8` can find it and does not need to download the static
library, what would break build hermetism.
2022-04-03 08:11:58 -04:00
Gabor Greif
a4b3bd08d9 wasmtime: 0.21.0 -> 0.35.2 2022-04-03 08:11:58 -04:00
Robert Schütz
56741fba94 wasmtime: use python3 2022-01-30 18:42:15 +00:00
Robert Schütz
d5cceedbd1 python,pythonPackages: make aliases
Since aliases are disallowed in nixpkgs, this makes usage of Python 2
which is EOL more explicit.
2022-01-16 18:39:59 +00:00
Daniël de Kok
85f96822a0 treewide: fix cargoSha256/cargoHash
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-05-08 00:36:37 -07:00
Andrew Childs
7869d16545 llvmPackages: Multuple outputs for everythting
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
  db29857eb3, 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)`
2021-04-30 05:41:00 +00:00
Gabor Greif
078dc38e35 wasmtime: 0.20.0 -> 0.21.0 2020-11-11 00:59:48 +01:00
Pavol Rusnak
2c931312ce treewide: simplify rev/repo arguments in src
+ use fetchFromGithub where possible
2020-11-01 23:02:24 -08:00
Gabor Greif
0243a18c8d wasmtime: 0.19.0 -> 0.20.0 2020-10-07 12:56:06 +02:00
Gabor Greif
74d9ab3f50 wasmtime: 0.18.0 -> 0.19.0 2020-07-22 01:50:56 +02:00
Gabor Greif
f16dc8aaf4 wasmtime: 0.17.0 -> 0.18.0
https://github.com/bytecodealliance/wasmtime/releases/tag/v0.18.0
2020-07-03 01:06:28 +02:00
Gabor Greif
557d075d7b wasmtime: 0.16.0 -> 0.17.0
https://github.com/bytecodealliance/wasmtime/releases/tag/v0.17.0
2020-06-10 22:45:49 +02:00
Gabor Greif
d89ae377d4 wasmtime-0.16.0: re-enable tests on Darwin
The issue https://github.com/bytecodealliance/wasmtime/issues/1556
appears to be fixed.
2020-05-16 04:56:26 +02:00
Gabor Greif
b39717abff wasmtime: 0.15.0 -> 0.16.0 2020-05-16 04:42:02 +02:00
Joachim Breitner
11894914e4 Disable test suite on darwin
no regression over `master` where the test suite didn’t run at all
2020-05-04 10:19:25 +02:00
Joachim Breitner
566cd87dee wasmtime : 0.12.0 -> 0.15.0
and enable tests again, now that upstream fixed stuff.
2020-05-02 19:40:23 +02:00
Gabor Greif
94d88d3b70 wasmtime-0.12.0: fix cargoSha256 2020-04-18 21:30:29 +02:00
Joachim Breitner
acc5a9c55f wasmtime: Do not prefix version with v
it seems that this breaks the use of `nix-env -i wasmtime`
2020-04-14 20:23:48 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Gabor Greif
aaf997511b wasmtime: bump to v0.12.0 (from v0.8.0)
- moved to modern cargo fetcher
- removed patch (not needed)
- disabled test (due to bytecodealliance/wasmtime#1197)
2020-03-01 02:34:43 +01:00
Benjamin Hipple
eb11feaa0b treewide: change fetchCargoTarball default to opt-out
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-02-13 22:41:37 -08:00
Joachim Breitner
246ba7bb0d wasmtime: 20191111 -> v0.8.0 2020-01-07 17:36:29 +01:00
Joachim Breitner
9ca11c90f3 The github repo has moved 2019-11-25 12:04:40 +01:00
Joachim Breitner
3ce8c48ad7 wasmtime: 20191018 -> 20191111
With this bump, we pull in support for building on darwin, i.e.
https://github.com/bytecodealliance/wasmtime/issues/516
2019-11-25 10:53:56 +01:00
Joachim Breitner
2c6d133211 wasmtime: 20190521 -> 20191018
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-10-18 09:58:25 +02:00
volth
08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
Lorenzo Manacorda
47be73c2f5 wasmtime: 0.1.0 -> 20190521 2019-06-10 17:26:38 +02:00
Matthew Bauer
bfaebc3647 wasmtime: fix hash 2019-04-30 21:25:44 -04:00
Matthew Bauer
dbb94b984f wasmtime: init and use for emulation
This isn’t really an "emulator" but it’s the closest concept we have
right now.
2019-04-23 21:48:57 -04:00