mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
36 lines
986 B
Nix
36 lines
986 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, buildVimPluginFrom2Nix
|
||
|
, buildLuarocksPackage
|
||
|
, lua51Packages
|
||
|
, toVimPlugin
|
||
|
}:
|
||
|
let
|
||
|
# sanitizeDerivationName
|
||
|
normalizeName = lib.replaceStrings [ "." ] [ "-" ];
|
||
|
in
|
||
|
|
||
|
# function to create vim plugin from lua packages that are already packaged in
|
||
|
# luaPackages
|
||
|
{
|
||
|
# the lua attribute name that matches this vim plugin. Both should be equal
|
||
|
# in the majority of cases but we make it possible to have different attribute names
|
||
|
luaAttr ? (normalizeName attrs.pname)
|
||
|
, ...
|
||
|
}@attrs:
|
||
|
let
|
||
|
originalLuaDrv = lua51Packages.${luaAttr};
|
||
|
luaDrv = lua51Packages.lib.overrideLuarocks originalLuaDrv (drv: {
|
||
|
extraConfig = ''
|
||
|
-- to create a flat hierarchy
|
||
|
lua_modules_path = "lua"
|
||
|
'';
|
||
|
});
|
||
|
finalDrv = toVimPlugin (luaDrv.overrideAttrs(oa: {
|
||
|
nativeBuildInputs = oa.nativeBuildInputs or [] ++ [
|
||
|
lua51Packages.luarocksMoveDataFolder
|
||
|
];
|
||
|
}));
|
||
|
in
|
||
|
finalDrv
|