luaPackages.{readline,image-nvim}: use lib.licenses (#524190)

This commit is contained in:
Austin Horstman
2026-05-26 16:13:02 +00:00
committed by GitHub
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -232,7 +232,7 @@ The following is an example:
vyp
lblasc
];
license.fullName = "MIT/X11";
license = lib.licenses.mit;
};
};
}
@@ -30,6 +30,6 @@ buildLuarocksPackage rec {
homepage = "https://github.com/3rd/image.nvim";
description = "🖼 Bringing images to Neovim.";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license.fullName = "MIT";
license = lib.licenses.mit;
};
}
@@ -1,6 +1,7 @@
{
buildLuarocksPackage,
fetchurl,
lib,
luaAtLeast,
luaOlder,
luaposix,
@@ -39,7 +40,7 @@ buildLuarocksPackage {
meta = {
homepage = "https://pjb.com.au/comp/lua/readline.html";
description = "Interface to the readline library";
license.fullName = "MIT/X11";
license = lib.licenses.mit;
broken = (luaOlder "5.1") || (luaAtLeast "5.5");
};
}