swc: 0.91.369 -> 0.91.495

This commit is contained in:
emaryn
2025-03-02 21:54:50 +08:00
parent dce71cf375
commit c5f894cf13
+9 -11
View File
@@ -6,28 +6,26 @@
rustPlatform.buildRustPackage rec {
pname = "swc";
version = "0.91.369";
env = {
# swc depends on nightly features
RUSTC_BOOTSTRAP = 1;
};
version = "0.91.495";
src = fetchCrate {
pname = "swc_cli";
inherit version;
hash = "sha256-6n6zHMV87h1kmjzEmdE86/toHI99q2HO1EEGHUE9sg8=";
hash = "sha256-th+VLeKdTqyAjyRer0GeGLprBX0XhYTd9F7kwBDrzLo=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-YuqoT5vGuUZfTenSgPPrC/7bTC0syiiiMYF/y0szG4Q=";
cargoHash = "sha256-mIFZ9F0XS16OGSQlzu7H2wQZN4YUEKJlK+KHmkrc12w=";
meta = with lib; {
# swc depends on nightly features
env.RUSTC_BOOTSTRAP = 1;
meta = {
description = "Rust-based platform for the Web";
mainProgram = "swc";
homepage = "https://github.com/swc-project/swc";
license = licenses.asl20;
maintainers = with maintainers; [
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
dit7ya
kashw2
];