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
This commit is contained in:
Matthieu Coudron
2019-02-05 15:00:19 +00:00
committed by Michael Raskin
parent c15c4d76ce
commit aaeaa6d1c6
6 changed files with 68 additions and 33 deletions
+4 -4
View File
@@ -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)