From 847a29ba5eecba99480730d13e75e56a9368da59 Mon Sep 17 00:00:00 2001 From: mat ess Date: Wed, 20 Jul 2022 22:18:46 -0400 Subject: [PATCH] Add luar --- pkgs/luar.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pkgs/luar.nix diff --git a/pkgs/luar.nix b/pkgs/luar.nix new file mode 100644 index 0000000..4ec95f0 --- /dev/null +++ b/pkgs/luar.nix @@ -0,0 +1,9 @@ +{ kakouneUtils, luar-src, lua, ... }: + +with kakouneUtils; + +buildKakounePlugin { + name = "luar"; + src = luar-src; + buildInputs = [ lua ]; +}