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
commit 0a52235930
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View file

@ -232,7 +232,7 @@ The following is an example:
vyp
lblasc
];
license.fullName = "MIT/X11";
license = lib.licenses.mit;
};
};
}

View file

@ -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;
};
}

View file

@ -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");
};
}