about summary refs log tree commit diff
path: root/pkgs/top-level/emilua-plugins.nix
blob: 9706ef5ce9a8d38139243194e6b30c3e9778d96c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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;
  };
}))