2024-10-02 04:25:05 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
substituteAll,
|
|
|
|
antlr4_9,
|
|
|
|
libargs,
|
|
|
|
catch2,
|
|
|
|
cmake,
|
|
|
|
yaml-cpp,
|
|
|
|
}:
|
2022-12-26 18:09:30 +00:00
|
|
|
let
|
|
|
|
antlr4 = antlr4_9;
|
|
|
|
in
|
2021-02-17 15:22:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "luaformatter";
|
2021-05-19 14:34:23 +00:00
|
|
|
version = "1.3.6";
|
2021-02-17 15:22:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-08-18 21:17:58 +00:00
|
|
|
owner = "Koihik";
|
|
|
|
repo = "LuaFormatter";
|
2021-02-17 15:22:01 +00:00
|
|
|
rev = version;
|
2021-08-18 21:17:58 +00:00
|
|
|
sha256 = "14l1f9hrp6m7z3cm5yl0njba6gfixzdirxjl8nihp9val0685vm0";
|
2021-02-17 15:22:01 +00:00
|
|
|
};
|
|
|
|
|
2021-08-18 21:17:58 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-lib-paths.patch;
|
|
|
|
antlr4RuntimeCpp = antlr4.runtime.cpp.dev;
|
2024-10-20 15:51:21 +00:00
|
|
|
yamlCpp = yaml-cpp;
|
|
|
|
inherit libargs catch2;
|
2021-08-18 21:17:58 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-02-17 15:22:01 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2024-10-02 04:25:05 +00:00
|
|
|
buildInputs = [
|
|
|
|
antlr4.runtime.cpp
|
|
|
|
yaml-cpp
|
|
|
|
];
|
2021-02-17 15:22:01 +00:00
|
|
|
|
2024-10-02 04:24:52 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (
|
2024-11-17 10:41:54 +00:00
|
|
|
stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64
|
2024-10-02 04:24:52 +00:00
|
|
|
) "-D_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION=1";
|
|
|
|
|
2021-02-17 15:22:01 +00:00
|
|
|
meta = with lib; {
|
2021-08-18 21:17:58 +00:00
|
|
|
description = "Code formatter for Lua";
|
|
|
|
homepage = "https://github.com/Koihik/LuaFormatter";
|
2021-02-17 15:22:01 +00:00
|
|
|
license = licenses.asl20;
|
2021-09-04 15:06:18 +00:00
|
|
|
platforms = platforms.all;
|
2023-07-23 17:30:22 +00:00
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2021-08-18 16:21:17 +00:00
|
|
|
mainProgram = "lua-format";
|
2021-02-17 15:22:01 +00:00
|
|
|
};
|
|
|
|
}
|