Unverified Commit 6fb2a651 authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

swc: 0.91.369 -> 0.91.495 (#386386)

parents a3529fec c5f894cf
Loading
Loading
Loading
Loading
+9 −11
Original line number Diff line number Diff line
@@ -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=";

  # swc depends on nightly features
  env.RUSTC_BOOTSTRAP = 1;

  meta = with lib; {
  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
    ];