mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
32 lines
812 B
Nix
32 lines
812 B
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, rustPlatform
|
|
, lua52Support ? true
|
|
, luauSupport ? false
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "stylua";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnnymorganz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-G7fCLkvpO5GHqWCfy2m3GxSgDSHCcYOaXyPDtdmdSY0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-MqRoGuRMEgOYvL2VI324EXZjrPVCbCE/c7aVEXr0xmw=";
|
|
|
|
buildFeatures = lib.optional lua52Support "lua52"
|
|
++ lib.optional luauSupport "luau";
|
|
|
|
meta = with lib; {
|
|
description = "An opinionated Lua code formatter";
|
|
homepage = "https://github.com/johnnymorganz/stylua";
|
|
changelog = "https://github.com/johnnymorganz/stylua/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|