c6ca5b8f13
GitOrigin-RevId: e4d49de45a3b5dbcb881656b4e3986e666141ea9
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ lib, stdenv, fetchCrate, rustPlatform, Security }:
|
||
|
||
rustPlatform.buildRustPackage rec {
|
||
pname = "dprint";
|
||
version = "0.30.3";
|
||
|
||
src = fetchCrate {
|
||
inherit pname version;
|
||
sha256 = "sha256-/lptdZEcnbBQL9hYj0xyI95fMT22tGy8zeQz+8VwMog=";
|
||
};
|
||
|
||
cargoSha256 = "sha256-BJGOaZgY03CYC8fa0wnlDmc9SO72lrLmdafovFD3BBI=";
|
||
|
||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||
|
||
# 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 ];
|
||
};
|
||
}
|