nixpkgs/pkgs/top-level/emilua-plugins.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
725 B
Nix
Raw Normal View History

{
lib,
newScope,
pkgs,
config,
}:
emilua:
(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;
};
qt5 = self.callPackage ../development/emilua-plugins/qt5 { };
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 { };
this-thread = self.callPackage ../development/emilua-plugins/this-thread { };
}))