mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, lua
|
|
, 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 = lua.pkgs.${luaAttr};
|
|
|
|
luaDrv = originalLuaDrv.overrideAttrs (oa: {
|
|
version = attrs.version or oa.version;
|
|
rockspecVersion = oa.rockspecVersion;
|
|
|
|
extraConfig = ''
|
|
-- to create a flat hierarchy
|
|
lua_modules_path = "lua"
|
|
'';
|
|
});
|
|
|
|
finalDrv = toVimPlugin (luaDrv.overrideAttrs(oa: attrs // {
|
|
nativeBuildInputs = oa.nativeBuildInputs or [] ++ [
|
|
lua.pkgs.luarocksMoveDataFolder
|
|
];
|
|
version = "${originalLuaDrv.version}-unstable-${oa.version}";
|
|
}));
|
|
in
|
|
finalDrv
|