wavm: add missing platforms

This commit is contained in:
Rafael Fernández López 2023-12-13 16:46:55 +01:00
parent fe1e2aefdc
commit 14447282cf
No known key found for this signature in database
GPG Key ID: 312702B051BDA6C9
2 changed files with 4 additions and 1 deletions

View File

@ -22,5 +22,6 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: {
homepage = "https://wavm.github.io";
license = licenses.bsd3;
maintainers = with maintainers; [ ereslibre ];
platforms = platforms.unix;
};
})

View File

@ -41381,7 +41381,9 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security;
};
wavm = callPackage ../development/interpreters/wavm { };
wavm = callPackage ../development/interpreters/wavm {
llvmPackages = llvmPackages_12;
};
yabasic = callPackage ../development/interpreters/yabasic { };