summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmer/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-12-05 17:47:17 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-12-05 17:47:17 +0000
commit4e0f0930e9813442fb28a8ac3f164f68079e269a (patch)
treed3d733683de2fe128e277832933f2781758bfff1 /pkgs/development/interpreters/wasmer/default.nix
parentaf6071db609bdf86f5d36f0bc4a4ac0fe8e92c35 (diff)
downloadnixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar.gz
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar.bz2
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar.lz
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar.xz
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.tar.zst
nixpkgs-4e0f0930e9813442fb28a8ac3f164f68079e269a.zip
wasmer: 2.0.0 -> 2.1.0
Diffstat (limited to 'pkgs/development/interpreters/wasmer/default.nix')
-rw-r--r--pkgs/development/interpreters/wasmer/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/wasmer/default.nix b/pkgs/development/interpreters/wasmer/default.nix
index 6c714bc3de5..af531a38a33 100644
--- a/pkgs/development/interpreters/wasmer/default.nix
+++ b/pkgs/development/interpreters/wasmer/default.nix
@@ -8,17 +8,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmer";
-  version = "2.0.0";
+  version = "2.1.0";
 
   src = fetchFromGitHub {
     owner = "wasmerio";
     repo = pname;
     rev = version;
-    sha256 = "191f60db2y1f3xw1x81mw88vclf1c4kgvnfv74g5vb3vn7n57c5j";
+    sha256 = "sha256-8aNJDu3MuXWcPp/nW1ly9+82YSfiMWc75Q4nQD6eUaA=";
     fetchSubmodules = true;
   };
 
-  cargoSha256 = "0hhwixqhrl79hpzmvq7ga3kp2cfrwr4i8364cwnr7195xwnfxb0k";
+  cargoSha256 = "sha256-l/Se0ijSX5zkAoedorsJvj5EhCuwgI4jE+S8lHZh6+4=";
 
   nativeBuildInputs = [ cmake pkg-config ];
 
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec {
   ];
 
   # Can't use test-jit:
-  # error: Package `wasmer-workspace v2.0.0 (/build/source)` does not have the feature `test-jit`
+  # error: Package `wasmer-workspace v2.1.0 (/build/source)` does not have the feature `test-jit`
   checkFeatures = [ "test-cranelift" ];
 
   LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";