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

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

36 lines
895 B
Nix
Raw Normal View History

2022-09-22 04:50:19 +00:00
{ lib
2021-06-14 02:47:06 +00:00
, rustPlatform
2022-09-22 04:50:19 +00:00
, fetchFromGitHub
# lua54 implies lua52/lua53
, features ? [ "lua54" "luau" ]
2021-06-14 02:47:06 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "stylua";
2022-09-22 04:50:19 +00:00
version = "0.15.0";
2021-06-14 02:47:06 +00:00
src = fetchFromGitHub {
owner = "johnnymorganz";
repo = pname;
rev = "v${version}";
2022-09-22 04:50:19 +00:00
sha256 = "sha256-x4/DmFi/6bIQVn8sfSFEOJIv4Zd/3oHKXbrd6yIsSYU=";
2021-06-14 02:47:06 +00:00
};
2022-09-22 04:50:19 +00:00
cargoSha256 = "sha256-lY18so+uG3yri18zd29B479nl0l1C0F1mw+sPrccRQs=";
2022-09-22 04:50:19 +00:00
# remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
postPatch = ''
rm .cargo/config.toml
'';
2021-06-14 02:47:06 +00:00
2022-09-22 04:50:19 +00:00
buildFeatures = features;
2021-06-14 02:47:06 +00: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 ];
};
}