dprint: init at 0.15.0

This commit is contained in:
Khushraj Rathod 2021-06-30 20:18:40 +05:30
parent 448bfa6e51
commit b5b2f19c22
No known key found for this signature in database
GPG key ID: B77B2A40E7702F19
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "dprint";
version = "0.15.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-1DUGp+HiiY03fyZ+b8hNUBIfuQV5Z/gEcOxc/vG3YiA=";
};
cargoSha256 = "sha256-twFXA8A+vP1n6IFJO78fKNs+FC2ui46rj1JmJ/eq3wc=";
# 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 ];
};
}

View file

@ -13299,6 +13299,8 @@ in
inherit (llvmPackages_11) llvm libclang;
};
dprint = callPackage ../development/tools/dprint { };
libcxx = llvmPackages.libcxx;
libcxxabi = llvmPackages.libcxxabi;