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

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

33 lines
1 KiB
Nix
Raw Normal View History

2022-01-02 02:16:45 +01:00
{ lib, stdenv, fetchCrate, rustPlatform, Security }:
2021-06-30 16:48:40 +02:00
rustPlatform.buildRustPackage rec {
pname = "dprint";
2022-04-12 01:17:49 +02:00
version = "0.24.4";
2021-06-30 16:48:40 +02:00
src = fetchCrate {
inherit pname version;
2022-04-12 01:17:49 +02:00
sha256 = "sha256-cOjtwdkkENy9HmJ9KRiZJ+JibTmNdkr/17EDgvyNmPw=";
2021-06-30 16:48:40 +02:00
};
2022-04-12 01:17:49 +02:00
cargoSha256 = "sha256-cyd9h2Yz8XU/X1w0P9qMv1GDuOL5X24CCstAv7BS7nw=";
2021-06-30 16:48:40 +02:00
2022-01-02 02:16:45 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2021-06-30 16:48:40 +02: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 ];
};
}