mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libgit2
|
|
, rust-jemalloc-sys
|
|
, zlib
|
|
, stdenv
|
|
, darwin
|
|
, git
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "biome";
|
|
version = "1.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "biomejs";
|
|
repo = "biome";
|
|
rev = "cli/v${version}";
|
|
hash = "sha256-6/RYuaR4HBXLI7eKysyRcSOxONFlChpQuhzWHAlx2CM=";
|
|
};
|
|
|
|
cargoHash = "sha256-ytGbiDamxkTCPjNTBMsW1YjK+qMZfktGG5mVUVdKV5I=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libgit2
|
|
rust-jemalloc-sys
|
|
zlib
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
];
|
|
|
|
cargoBuildFlags = [ "-p=biome_cli" ];
|
|
cargoTestFlags = cargoBuildFlags ++
|
|
# skip a broken test from v1.7.3 release
|
|
# this will be removed on the next version
|
|
[ "-- --skip=diagnostics::test::termination_diagnostic_size" ];
|
|
|
|
env = {
|
|
BIOME_VERSION = version;
|
|
LIBGIT2_NO_VENDOR = 1;
|
|
};
|
|
|
|
preCheck = ''
|
|
# tests assume git repository
|
|
git init
|
|
|
|
# tests assume $BIOME_VERSION is unset
|
|
unset BIOME_VERSION
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Toolchain of the web";
|
|
homepage = "https://biomejs.dev/";
|
|
changelog = "https://github.com/biomejs/biome/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "biome";
|
|
};
|
|
}
|