oxlint 0.2.13 -> 0.2.14 https://repology.org/project/oxlint/versions attrpath: oxlint Checking auto update branch... No auto update branch exists Old version 0.2.13" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , rust-jemalloc-sys , stdenv , darwin }: rustPlatform.buildRustPackage rec { pname = "oxlint"; version = "0.2.14"; src = fetchFromGitHub { owner = "web-infra-dev"; repo = "oxc"; rev = "oxlint_v${version}"; hash = "sha256-nIY80YWZpDJSFkPLMBjXyk2SYx2tnVhFrxiBrYFu/e4="; }; cargoHash = "sha256-BRrF0Ad6tbN+xajzPhDHP7ZJPbruRrcdwjZBFukMKfs="; buildInputs = [ rust-jemalloc-sys ] ++ 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"; }; }