Merge pull request #252678 from figsoda/biome

biome: init at 1.0.0
This commit is contained in:
Matthias Beyer 2023-09-01 08:57:01 +02:00 committed by GitHub
commit 545fd3fd2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,63 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, libgit2_1_6
, zlib
, stdenv
, darwin
, git
}:
rustPlatform.buildRustPackage rec {
pname = "biome";
version = "1.0.0";
src = fetchFromGitHub {
owner = "biomejs";
repo = "biome";
rev = "cli/v${version}";
hash = "sha256-oX/LyC6JN0NUc/xi4G9lzKgF9yOlooAt69Gw+eLJxbE=";
};
cargoHash = "sha256-4P57fmp5CpGn1wYkQos7PO3YFChup8LrrLExv9S76gs=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libgit2_1_6
zlib
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
nativeCheckInputs = [
git
];
cargoBuildFlags = [ "-p=rome_cli" ];
cargoTestFlags = cargoBuildFlags;
env = {
BIOME_VERSION = version;
};
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";
};
}

View file

@ -7045,6 +7045,8 @@ with pkgs;
biodiff = callPackage ../development/tools/biodiff { };
biome = callPackage ../development/tools/biome { };
biosdevname = callPackage ../tools/networking/biosdevname { };
bluetooth_battery = python3Packages.callPackage ../applications/misc/bluetooth_battery { };