nixpkgs/pkgs/by-name/lu/luaformatter/package.nix

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

55 lines
1.1 KiB
Nix
Raw Normal View History

2024-10-02 04:25:05 +00:00
{
lib,
stdenv,
fetchFromGitHub,
substituteAll,
antlr4_9,
libargs,
catch2,
cmake,
yaml-cpp,
}:
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 {
owner = "Koihik";
repo = "LuaFormatter";
2021-02-17 15:22:01 +00:00
rev = version;
sha256 = "14l1f9hrp6m7z3cm5yl0njba6gfixzdirxjl8nihp9val0685vm0";
2021-02-17 15:22:01 +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-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 (
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; {
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
};
}