nixpkgs/pkgs/development/tools/dprint/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchCrate, rustPlatform, CoreFoundation, Security }:
2021-06-30 14:48:40 +00:00
rustPlatform.buildRustPackage rec {
pname = "dprint";
2024-01-01 00:31:10 +00:00
version = "0.45.0";
2021-06-30 14:48:40 +00:00
src = fetchCrate {
inherit pname version;
2024-01-01 00:31:10 +00:00
sha256 = "sha256-Vs+LcvGXcFT0kcZHtLv3T+4xV88kP02r9wDC5hBOZCg=";
2021-06-30 14:48:40 +00:00
};
2024-01-01 00:31:10 +00:00
cargoHash = "sha256-DbFvsOLJ+diLzQXzl6csuVMqjBbI3z+vO37HQ/WnLR4=";
2021-06-30 14:48:40 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
2022-01-02 01:16:45 +00:00
2021-06-30 14:48:40 +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 its 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-07 15:08:52 +00:00
mainProgram = "dprint";
2021-06-30 14:48:40 +00:00
};
}