mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
luaPackages.{readline,image-nvim}: use lib.licenses (#524190)
This commit is contained in:
commit
0a52235930
3 changed files with 4 additions and 3 deletions
|
|
@ -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");
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue