mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
e13831335f
* treewide: stdenv.is -> stdenv.hostPlatform.is * treewide: nixfmt due to ci error
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
substituteAll,
|
|
antlr4_9,
|
|
libargs,
|
|
catch2,
|
|
cmake,
|
|
yaml-cpp,
|
|
}:
|
|
let
|
|
antlr4 = antlr4_9;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "luaformatter";
|
|
version = "1.3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Koihik";
|
|
repo = "LuaFormatter";
|
|
rev = version;
|
|
sha256 = "14l1f9hrp6m7z3cm5yl0njba6gfixzdirxjl8nihp9val0685vm0";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-lib-paths.patch;
|
|
antlr4RuntimeCpp = antlr4.runtime.cpp.dev;
|
|
yamlCpp = yaml-cpp;
|
|
inherit libargs catch2;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
antlr4.runtime.cpp
|
|
yaml-cpp
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (
|
|
stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64
|
|
) "-D_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION=1";
|
|
|
|
meta = with lib; {
|
|
description = "Code formatter for Lua";
|
|
homepage = "https://github.com/Koihik/LuaFormatter";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "lua-format";
|
|
};
|
|
}
|