Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9fc484c37326
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4ad6e85f7530
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 14, 2020

  1. 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.
    - WebAssembly/wabt#1463
    
    Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
    srenatus committed Nov 14, 2020
    Copy the full SHA
    fccd10f View commit details

Commits on Nov 16, 2020

  1. Merge pull request #103807 from srenatus/bump/wabt/1.0.20

    wabt: 1.0.19 -> 1.0.20
    Ma27 authored Nov 16, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4ad6e85 View commit details
Showing with 2 additions and 8 deletions.
  1. +2 −8 pkgs/development/tools/wabt/default.nix
10 changes: 2 additions & 8 deletions pkgs/development/tools/wabt/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];