diff options
Diffstat (limited to 'pkgs/development/tools/oxlint/default.nix')
-rw-r--r-- | pkgs/development/tools/oxlint/default.nix | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/tools/oxlint/default.nix b/pkgs/development/tools/oxlint/default.nix deleted file mode 100644 index 4625b97eb000..000000000000 --- a/pkgs/development/tools/oxlint/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, rust-jemalloc-sys -, stdenv -, darwin -}: - -rustPlatform.buildRustPackage rec { - pname = "oxlint"; - version = "0.5.2"; - - src = fetchFromGitHub { - owner = "web-infra-dev"; - repo = "oxc"; - rev = "oxlint_v${version}"; - hash = "sha256-rjp1k3cnDSr/hKXNru7XQ6n5Wz97j2EULnHwg3HAm3g="; - }; - - cargoHash = "sha256-3IebdIKw3lV+Qy6F7ZgWMchPLzrluGSeWTV9l5to8iM="; - - buildInputs = [ - rust-jemalloc-sys - ] ++ lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.Security - ]; - - cargoBuildFlags = [ "--bin=oxlint" ]; - cargoTestFlags = cargoBuildFlags; - - meta = with lib; { - description = "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"; - }; -} |