Merge pull request #252534 from kashw2/swc

authored by

Artturi and committed by
GitHub
e44631f3 26b11c54

+8 -3
+8 -3
pkgs/development/tools/swc/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "swc"; 8 - version = "0.91.19"; 8 + version = "0.91.67"; 9 + 10 + env = { 11 + # swc depends on nightly features 12 + RUSTC_BOOTSTRAP = 1; 13 + }; 9 14 10 15 src = fetchCrate { 11 16 pname = "swc_cli"; 12 17 inherit version; 13 - sha256 = "sha256-BzReetAOKSGzHhITXpm+J2Rz8d9Hq2HUagQmfst74Ag="; 18 + sha256 = "sha256-ibNrdMxb1A/QwtK/J/2tbqCxpWssTeFSXrO8oEeEoDA="; 14 19 }; 15 20 16 - cargoSha256 = "sha256-1U9YLrPYENv9iJobCxtgnQakJLDctWQwnDUtpLG3PGc="; 21 + cargoSha256 = "sha256-puECB7/b2lKTquaDvzd19pYbmY8OeRfbA9u1xMjzl/k="; 17 22 18 23 buildFeatures = [ "swc_core/plugin_transform_host_native" ]; 19 24