Unverified Commit 6c812309 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

oxlint: 0.15.2 -> 0.15.3 (#368566)

parents 49a9f3e0 1b42e7d0
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@

rustPlatform.buildRustPackage rec {
  pname = "oxlint";
  version = "0.15.2";
  version = "0.15.3";

  src = fetchFromGitHub {
    owner = "web-infra-dev";
    repo = "oxc";
    rev = "oxlint_v${version}";
    hash = "sha256-ENtrK19j9wIp1NpuMwn+YlGxAav5ah6aExNsXckFc7E=";
    hash = "sha256-cH3Sosfmx0eOWWOjglcB3puiK0XKbO0wua45/YMZe+0=";
  };

  cargoHash = "sha256-xAgvz+0i1wKblefhDWh0d1HSboMRDZG8VX/csn64FpI=";
  cargoHash = "sha256-Yfk5DGOo3GLHzqJYCFrlLB7soHFI+zBRR93daVOgrmk=";

  buildInputs = [
    rust-jemalloc-sys
@@ -25,6 +25,8 @@ rustPlatform.buildRustPackage rec {
    darwin.apple_sdk.frameworks.Security
  ];

  env.OXC_VERSION = version;

  cargoBuildFlags = [ "--bin=oxlint" ];
  cargoTestFlags = cargoBuildFlags;