2024-09-05 20:27:23 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
newScope,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
}:
|
2024-09-05 17:48:57 +00:00
|
|
|
|
|
|
|
emilua:
|
2024-09-05 20:27:23 +00:00
|
|
|
(lib.makeScope newScope (self: {
|
|
|
|
inherit emilua;
|
|
|
|
beast = self.callPackage ../development/emilua-plugins/beast { };
|
2024-09-25 01:41:41 +00:00
|
|
|
bech32 = self.callPackage ../development/emilua-plugins/bech32 { };
|
2024-09-21 20:54:21 +00:00
|
|
|
botan = self.callPackage ../development/emilua-plugins/botan {
|
|
|
|
inherit (pkgs) botan3;
|
|
|
|
};
|
2024-09-11 00:38:15 +00:00
|
|
|
qt5 = self.callPackage ../development/emilua-plugins/qt5 { };
|
2024-09-11 00:49:11 +00:00
|
|
|
qt6 = self.callPackage ../development/emilua-plugins/qt6 { };
|
2024-09-21 21:04:35 +00:00
|
|
|
secp256k1 = self.callPackage ../development/emilua-plugins/secp256k1 {
|
|
|
|
inherit (pkgs) secp256k1;
|
|
|
|
};
|
2024-09-25 01:47:10 +00:00
|
|
|
tdlib = self.callPackage ../development/emilua-plugins/tdlib { };
|
2024-09-25 01:45:02 +00:00
|
|
|
this-thread = self.callPackage ../development/emilua-plugins/this-thread { };
|
2024-09-05 20:27:23 +00:00
|
|
|
}))
|