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

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

39 lines
914 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, substituteAll, antlr4_9, libargs, catch2, cmake, libyamlcpp }:
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;
inherit libargs catch2 libyamlcpp;
})
];
2021-02-17 15:22:01 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ antlr4.runtime.cpp libyamlcpp ];
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;
maintainers = with maintainers; [ figsoda SuperSandro2000 ];
2021-08-18 16:21:17 +00:00
mainProgram = "lua-format";
2021-02-17 15:22:01 +00:00
};
}