Commit d7b95d8e authored by figsoda's avatar figsoda
Browse files

oxlint: init at 0.0.11

parent 69610538
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:

rustPlatform.buildRustPackage rec {
  pname = "oxlint";
  version = "0.0.11";

  src = fetchFromGitHub {
    owner = "web-infra-dev";
    repo = "oxc";
    rev = "oxlint_v${version}";
    hash = "sha256-di+uCLZJNJMETMSUxQwlFaZPJps0+HIL7h+EvudP5II=";
  };

  cargoHash = "sha256-r+HRm9JNFKFL78VP/Yz87b1nQDLwbNuhHd0JkXeuCC0=";

  buildInputs = lib.optionals stdenv.isDarwin [
    darwin.apple_sdk.frameworks.Security
  ];

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

  meta = with lib; {
    description = "A suite of high-performance tools for JavaScript and TypeScript written in Rust";
    homepage = "https://github.com/web-infra-dev/oxc";
    changelog = "https://github.com/web-infra-dev/oxc/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "oxlint";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11700,6 +11700,8 @@ with pkgs;
  oxker = callPackage ../applications/misc/oxker { };
  oxlint = callPackage ../development/tools/oxlint { };
  ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { };
  ovito = libsForQt5.callPackage ../applications/graphics/ovito {