Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 23 lines 725 B view raw
1{ 2 lib, 3 newScope, 4 pkgs, 5 config, 6}: 7 8emilua: 9(lib.makeScope newScope (self: { 10 inherit emilua; 11 beast = self.callPackage ../development/emilua-plugins/beast { }; 12 bech32 = self.callPackage ../development/emilua-plugins/bech32 { }; 13 botan = self.callPackage ../development/emilua-plugins/botan { 14 inherit (pkgs) botan3; 15 }; 16 qt5 = self.callPackage ../development/emilua-plugins/qt5 { }; 17 qt6 = self.callPackage ../development/emilua-plugins/qt6 { }; 18 secp256k1 = self.callPackage ../development/emilua-plugins/secp256k1 { 19 inherit (pkgs) secp256k1; 20 }; 21 tdlib = self.callPackage ../development/emilua-plugins/tdlib { }; 22 this-thread = self.callPackage ../development/emilua-plugins/this-thread { }; 23}))