wasmedge: migrate to by-name

This commit is contained in:
Guy Chronister
2026-01-31 20:22:02 +00:00
committed by Weijia Wang
parent 374122358a
commit 420bc3e1d4
2 changed files with 2 additions and 6 deletions
@@ -1,6 +1,5 @@
{
lib,
stdenv,
fetchFromGitHub,
llvmPackages_19,
boost,
@@ -21,8 +20,9 @@ let
#
# > Where `.#` is the flake path were the repo `wasmedge` was cloned at the expected version.
llvmPackages = llvmPackages_19;
stdenv = llvmPackages.stdenv;
in
llvmPackages.stdenv.mkDerivation (finalAttrs: {
stdenv.mkDerivation (finalAttrs: {
pname = "wasmedge";
version = "0.16.1";
-4
View File
@@ -3665,10 +3665,6 @@ with pkgs;
buildWasmBindgenCli = callPackage ../build-support/wasm-bindgen-cli { };
wasmedge = callPackage ../development/tools/wasmedge {
stdenv = clangStdenv;
};
woodpecker-agent = callPackage ../development/tools/continuous-integration/woodpecker/agent.nix { };
woodpecker-cli = callPackage ../development/tools/continuous-integration/woodpecker/cli.nix { };