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

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

32 lines
812 B
Nix
Raw Normal View History

2021-06-14 02:47:06 +00:00
{ fetchFromGitHub
, lib
, rustPlatform
, lua52Support ? true
, luauSupport ? false
}:
rustPlatform.buildRustPackage rec {
pname = "stylua";
2022-03-12 23:19:18 +00:00
version = "0.12.5";
2021-06-14 02:47:06 +00:00
src = fetchFromGitHub {
owner = "johnnymorganz";
repo = pname;
rev = "v${version}";
2022-03-12 23:19:18 +00:00
sha256 = "sha256-4tQQTTAdIAhlkBJevwwwGXOKd6bJJOyG4nlbCv7909Y=";
2021-06-14 02:47:06 +00:00
};
2022-03-12 23:19:18 +00:00
cargoSha256 = "sha256-DGe2lB8xZgY9ikTsIHDOdHzTyHfDaSlmy8FU/S9FDCI=";
2021-06-14 02:47:06 +00:00
2021-11-16 00:41:17 +00:00
buildFeatures = lib.optional lua52Support "lua52"
++ lib.optional luauSupport "luau";
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 ];
};
}