mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
21177c6192
Diff: https://github.com/johnnymorganz/stylua/compare/v0.17.0...v0.17.1 Changelog: https://github.com/johnnymorganz/stylua/blob/v0.17.1/CHANGELOG.md
36 lines
895 B
Nix
36 lines
895 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
# lua54 implies lua52/lua53
|
|
, features ? [ "lua54" "luau" ]
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "stylua";
|
|
version = "0.17.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnnymorganz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-yS671IwfqUu5aBcNTMZyqDFWCWwYGBAr/YbMvUa49vg=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-6STyn5Ap1mIyR0GtzsV9BNTA4uuS/7+IJ4U9BbeDOc0=";
|
|
|
|
# remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
|
|
postPatch = ''
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
buildFeatures = features;
|
|
|
|
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 ];
|
|
};
|
|
}
|