2023-10-19 13:55:26 +00:00
|
|
|
|
{ lib, stdenv, fetchCrate, rustPlatform, CoreFoundation, Security }:
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
|
pname = "dprint";
|
2024-06-20 14:57:18 +00:00
|
|
|
|
version = "0.46.3";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
|
inherit pname version;
|
2024-06-20 14:57:18 +00:00
|
|
|
|
sha256 = "sha256-IyhKxCqLyboEZINalI6bd///sUxWvmWlQVrzMA2sNdU=";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
|
cargoHash = "sha256-46t6Y2UuRCAnvOhEPLgYN+fHHtJYxuflRT3DClLTDQk=";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
|
2022-01-03 16:56:52 +00:00
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
|
# Tests fail because they expect a test WASM plugin. Tests already run for
|
|
|
|
|
# every commit upstream on GitHub Actions
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Code formatting platform written in Rust";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
dprint is a pluggable and configurable code formatting platform written in Rust.
|
|
|
|
|
It offers multiple WASM plugins to support various languages. It's written in
|
|
|
|
|
Rust, so it’s small, fast, and portable.
|
|
|
|
|
'';
|
|
|
|
|
changelog = "https://github.com/dprint/dprint/releases/tag/${version}";
|
|
|
|
|
homepage = "https://dprint.dev";
|
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ khushraj ];
|
2023-08-10 07:59:29 +00:00
|
|
|
|
mainProgram = "dprint";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
};
|
|
|
|
|
}
|