Skip to content

Commit

Permalink
wabt: 1.0.20 -> 1.0.23 (#117548)
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Mar 25, 2021
1 parent 87ca743 commit fd58db2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pkgs/development/tools/wabt/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{ lib, stdenv, fetchpatch, fetchFromGitHub, cmake, python3, substituteAll }:
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
pname = "wabt";
version = "1.0.20";
version = "1.0.23";

src = fetchFromGitHub {
owner = "WebAssembly";
repo = "wabt";
rev = version;
sha256 = "1wwyljppxz03slvgx809g87mdrglpimz4xaici71a9mqwjpgj0l8";
sha256 = "1drjngcqkaahzk92jysrzv86fhj02c074xffd7kn3k6q8fxc0976";
fetchSubmodules = true;
};

nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCMAKE_PROJECT_VERSION=${version}" ];
buildInputs = [ python3 ];

meta = with lib; {
description = "The WebAssembly Binary Toolkit";
Expand Down

0 comments on commit fd58db2

Please sign in to comment.