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 Permalink Normal View History

{
lib,
newScope,
pkgs,
config,
}:
emilua:
(lib.makeScope newScope (self: {
inherit emilua;
beast = self.callPackage ../development/emilua-plugins/beast { };
2024-09-25 04:41:41 +03:00
bech32 = self.callPackage ../development/emilua-plugins/bech32 { };
2024-09-21 23:54:21 +03: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-22 00:04:35 +03:00
secp256k1 = self.callPackage ../development/emilua-plugins/secp256k1 {
inherit (pkgs) secp256k1;
};
2024-09-25 04:47:10 +03:00
tdlib = self.callPackage ../development/emilua-plugins/tdlib { };
this-thread = self.callPackage ../development/emilua-plugins/this-thread { };
}))