summary refs log tree commit diff
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <coudron@iij.ad.jp>2019-02-06 00:00:19 +0900
committerMichael Raskin <7c6f434c@mail.ru>2019-02-05 15:00:19 +0000
commitaaeaa6d1c6052938c302c07407e441e5b5794e48 (patch)
treeb886984d40101e65aa2321dedc50eee00bce31c6 /pkgs/top-level/lua-packages.nix
parentc15c4d76ce8f9d295a0ee297dec614ed6fcaa422 (diff)
downloadnixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar.gz
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar.bz2
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar.lz
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar.xz
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.tar.zst
nixpkgs-aaeaa6d1c6052938c302c07407e441e5b5794e48.zip
Add checkPhase for neovim (disabled by default) (#55266)
* neovim-unwrapped: now use lua environments

* mpv: use lua environments

* luaPackages.inspect: init at 3.1.1-0

* luaPackages.lgi: mark as a lua module

* luaPackages.vicious: mark as a lua module
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index 11e05b504b4..de68c139dc2 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -972,7 +972,7 @@ with self; {
     };
   };
 
-  lgi = stdenv.mkDerivation rec {
+  lgi = toLuaModule(stdenv.mkDerivation rec {
     name = "lgi-${version}";
     version = "0.9.2";
 
@@ -1007,7 +1007,7 @@ with self; {
       maintainers = with maintainers; [ lovek323 rasendubi ];
       platforms   = platforms.unix;
     };
-  };
+  });
 
   mpack = buildLuaPackage rec {
     name = "mpack-${version}";
@@ -1105,7 +1105,7 @@ with self; {
     };
   };
 
-  vicious = stdenv.mkDerivation rec {
+  vicious = toLuaModule(stdenv.mkDerivation rec {
     name = "vicious-${version}";
     version = "2.3.1";
 
@@ -1131,7 +1131,7 @@ with self; {
       maintainers = with maintainers; [ makefu mic92 ];
       platforms   = platforms.linux;
     };
-  };
+  });
 
 });
 in (lib.extends overrides packages)