wabt: 1.0.12 -> 1.0.13

https://github.com/WebAssembly/wabt/releases/tag/1.0.13
This commit is contained in:
Maximilian Bosch
2020-01-17 23:58:02 +01:00
parent 281e3a3c23
commit ac65998957
2 changed files with 42 additions and 6 deletions
+14 -6
View File
@@ -1,16 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, python3 }:
{ stdenv, fetchFromGitHub, cmake, python3, substituteAll }:
stdenv.mkDerivation rec {
pname = "wabt";
version = "1.0.12";
version = "1.0.13";
src = fetchFromGitHub {
owner = "WebAssembly";
repo = "wabt";
rev = version;
sha256 = "1zlv3740wkqj4mn6sr84h0x6wk2lcp4pwwmqsh5yyqp1j1glbsa0";
owner = "WebAssembly";
repo = "wabt";
rev = version;
sha256 = "07x8m5sf4c7zjq1flypycw1d15ylqdp38l81vn961ds089ngvpgg";
fetchSubmodules = true;
};
patches = [
(substituteAll {
src = ./version.patch;
inherit version;
})
];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_TESTS=OFF" ];
buildInputs = [ python3 ];