about summary refs log tree commit diff
path: root/pkgs/development/tools/wabt
diff options
context:
space:
mode:
authorStephan Renatus <stephan.renatus@gmail.com>2020-11-13 19:48:57 +0100
committerStephan Renatus <stephan.renatus@gmail.com>2020-11-14 13:52:34 +0100
commitfccd10f426449e3916d9a8bda056451bc5230734 (patch)
treea1ce9b121b5f89db751fd1c9df94bf964fbe614c /pkgs/development/tools/wabt
parentf94859f1999f44530b9ea3220e1556702cf9c789 (diff)
wabt: 1.0.19 -> 1.0.20
For some unknown reason, the version built here reports
itself as 1.0.13 (e.g. in `wasm-objdump --version`).

That is unfortunate, but seems to match what happened in
the release binaries published on github:
- https://github.com/WebAssembly/wabt/releases/tag/1.0.20
  these report 1.0.13 for me, too, on macos.
- https://github.com/WebAssembly/wabt/issues/1463

Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
Diffstat (limited to 'pkgs/development/tools/wabt')
-rw-r--r--pkgs/development/tools/wabt/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/tools/wabt/default.nix b/pkgs/development/tools/wabt/default.nix
index a8ade2b815cce..b910a31e1552a 100644
--- a/pkgs/development/tools/wabt/default.nix
+++ b/pkgs/development/tools/wabt/default.nix
@@ -2,22 +2,16 @@
 
 stdenv.mkDerivation rec {
   pname = "wabt";
-  version = "1.0.19";
+  version = "1.0.20";
 
   src = fetchFromGitHub {
     owner = "WebAssembly";
     repo = "wabt";
     rev = version;
-    sha256 = "0g1iy1icnjfkc0dadkrif4nlixpvq626023rgj02m9al64gf9hvx";
+    sha256 = "1wwyljppxz03slvgx809g87mdrglpimz4xaici71a9mqwjpgj0l8";
     fetchSubmodules = true;
   };
 
-  # https://github.com/WebAssembly/wabt/pull/1408
-  patches = [ (fetchpatch {
-    url = "https://github.com/WebAssembly/wabt/pull/1408/commits/28505f4db6e4561cf6840af5c304a9aa900c4987.patch";
-    sha256 = "1nh1ddsak6w51np17xf2r7i0czxrjslz1i4impmmp88h5bp2yjba";
-  }) ];
-
   nativeBuildInputs = [ cmake ];
   cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCMAKE_PROJECT_VERSION=${version}" ];
   buildInputs = [ python3 ];