nixpkgs/pkgs/top-level/emilua-plugins.nix
lucasew 32741141c7 emiluaPlugins.qt6: init at 1.0.3
Signed-off-by: lucasew <lucas59356@gmail.com>
2024-09-10 23:10:11 -03:00

15 lines
302 B
Nix

{
lib,
newScope,
pkgs,
config,
}:
emilua:
(lib.makeScope newScope (self: {
inherit emilua;
beast = self.callPackage ../development/emilua-plugins/beast { };
qt5 = self.callPackage ../development/emilua-plugins/qt5 { };
qt6 = self.callPackage ../development/emilua-plugins/qt6 { };
}))