mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
20 lines
507 B
Nix
20 lines
507 B
Nix
{
|
|
lib,
|
|
newScope,
|
|
pkgs,
|
|
config,
|
|
}:
|
|
|
|
emilua:
|
|
(lib.makeScope newScope (self: {
|
|
inherit emilua;
|
|
beast = self.callPackage ../development/emilua-plugins/beast { };
|
|
botan = self.callPackage ../development/emilua-plugins/botan {
|
|
inherit (pkgs) botan3;
|
|
};
|
|
qt5 = self.callPackage ../development/emilua-plugins/qt5 { };
|
|
qt6 = self.callPackage ../development/emilua-plugins/qt6 { };
|
|
secp256k1 = self.callPackage ../development/emilua-plugins/secp256k1 {
|
|
inherit (pkgs) secp256k1;
|
|
};
|
|
}))
|