mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
rome: init at 12.1.0
This commit is contained in:
parent
75b4d0ff2b
commit
b441d69ae2
53
pkgs/development/tools/rome/default.nix
Normal file
53
pkgs/development/tools/rome/default.nix
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, stdenv
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "rome";
|
||||||
|
version = "12.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rome";
|
||||||
|
repo = "tools";
|
||||||
|
rev = "cli/v${version}";
|
||||||
|
hash = "sha256-XORu6c/9jrRObdM3qAGszhiUjo88NTzrTyrITuHyd/4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-75r280PMM1zDrqRmhuaU++5aZSCxeyqjHQls8pTzOgQ=";
|
||||||
|
|
||||||
|
cargoBuildFlags = [ "--package" "rome_cli" ];
|
||||||
|
|
||||||
|
env = {
|
||||||
|
RUSTFLAGS = "-C strip=symbols";
|
||||||
|
ROME_VERSION = "${version}";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
# need to manually unset the ROME_VERSION before checkPhase otherwise some tests fail
|
||||||
|
preCheck = ''
|
||||||
|
unset ROME_VERSION;
|
||||||
|
'';
|
||||||
|
|
||||||
|
# these test fail
|
||||||
|
checkFlags = [
|
||||||
|
"--skip parser::tests::uncompleted_markers_panic"
|
||||||
|
"--skip commands::check::fs_error_infinite_symlink_exapansion"
|
||||||
|
"--skip commands::check::fs_error_dereferenced_symlink"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A formatter, linter, bundler, and more for JavaScript, TypeScript, JSON, HTML, Markdown, and CSS";
|
||||||
|
homepage = "https://rome.tools";
|
||||||
|
changelog = "https://github.com/rome/tools/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dit7ya felschr ];
|
||||||
|
};
|
||||||
|
}
|
@ -18938,6 +18938,8 @@ with pkgs;
|
|||||||
|
|
||||||
rolespec = callPackage ../development/tools/misc/rolespec { };
|
rolespec = callPackage ../development/tools/misc/rolespec { };
|
||||||
|
|
||||||
|
rome = callPackage ../development/tools/rome { };
|
||||||
|
|
||||||
rr = callPackage ../development/tools/analysis/rr { };
|
rr = callPackage ../development/tools/analysis/rr { };
|
||||||
|
|
||||||
rsass = callPackage ../development/tools/misc/rsass { };
|
rsass = callPackage ../development/tools/misc/rsass { };
|
||||||
|
Loading…
Reference in New Issue
Block a user