about summary refs log tree commit diff
path: root/pkgs/top-level/emilua-plugins.nix
blob: ff1d2c7f645fe9de8f31924db38d021e6665d654 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  newScope,
  pkgs,
  config,
}:

emilua:
(lib.makeScope newScope (self: {
  inherit emilua;
  beast = self.callPackage ../development/emilua-plugins/beast { };
  bech32 = self.callPackage ../development/emilua-plugins/bech32 { };
  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;
  };
  tdlib = self.callPackage ../development/emilua-plugins/tdlib { };
  this-thread = self.callPackage ../development/emilua-plugins/this-thread { };
}))