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

37 lines
921 B
Nix
Raw Normal View History

2022-09-22 07:50:19 +03:00
{ lib
2021-06-14 05:47:06 +03:00
, rustPlatform
2022-09-22 07:50:19 +03:00
, fetchFromGitHub
# lua54 implies lua52/lua53
, features ? [ "lua54" "luau" ]
2021-06-14 05:47:06 +03:00
}:
rustPlatform.buildRustPackage rec {
pname = "stylua";
2024-01-23 23:22:55 +03:00
version = "0.20.0";
2021-06-14 05:47:06 +03:00
src = fetchFromGitHub {
owner = "johnnymorganz";
repo = pname;
rev = "v${version}";
2024-01-23 23:22:55 +03:00
sha256 = "sha256-bqUmLtJLjImWqe06CeIWIU4FP+/Vxszp2yKMosVeyZM=";
2021-06-14 05:47:06 +03:00
};
2024-01-23 23:22:55 +03:00
cargoHash = "sha256-EMHt9oskPJCeAu/5VG6PaMt/4NTmNOaFTM5TMOy0BV8=";
2022-09-22 07:50:19 +03:00
# remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
postPatch = ''
rm .cargo/config.toml
'';
2021-06-14 05:47:06 +03:00
2022-09-22 07:50:19 +03:00
buildFeatures = features;
2021-06-14 05:47:06 +03:00
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 ];
2023-08-07 18:08:52 +03:00
mainProgram = "stylua";
2021-06-14 05:47:06 +03:00
};
}