mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #128784 from KhushrajRathod/add-dprint
This commit is contained in:
commit
539fae1fc1
|
@ -5438,6 +5438,16 @@
|
||||||
githubId = 788813;
|
githubId = 788813;
|
||||||
name = "Bryan Gardiner";
|
name = "Bryan Gardiner";
|
||||||
};
|
};
|
||||||
|
khushraj = {
|
||||||
|
email = "khushraj.rathod@gmail.com";
|
||||||
|
github = "KhushrajRathod";
|
||||||
|
githubId = 44947946;
|
||||||
|
name = "Khushraj Rathod";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa2048/0xB77B2A40E7702F19";
|
||||||
|
fingerprint = "1988 3FD8 EA2E B4EC 0A93 1E22 B77B 2A40 E770 2F19";
|
||||||
|
}];
|
||||||
|
};
|
||||||
KibaFox = {
|
KibaFox = {
|
||||||
email = "kiba.fox@foxypossibilities.com";
|
email = "kiba.fox@foxypossibilities.com";
|
||||||
github = "KibaFox";
|
github = "KibaFox";
|
||||||
|
|
30
pkgs/development/tools/dprint/default.nix
Normal file
30
pkgs/development/tools/dprint/default.nix
Normal 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 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -13314,6 +13314,8 @@ in
|
||||||
inherit (llvmPackages_11) llvm libclang;
|
inherit (llvmPackages_11) llvm libclang;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dprint = callPackage ../development/tools/dprint { };
|
||||||
|
|
||||||
libcxx = llvmPackages.libcxx;
|
libcxx = llvmPackages.libcxx;
|
||||||
libcxxabi = llvmPackages.libcxxabi;
|
libcxxabi = llvmPackages.libcxxabi;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue