|
1 |
| -{ lib, inputs, ... }: { |
2 |
| - perSystem = { pkgs, config, system, ... }: |
| 1 | +{ lib, inputs, ... }: |
| 2 | +{ |
| 3 | + perSystem = |
| 4 | + { |
| 5 | + pkgs, |
| 6 | + config, |
| 7 | + system, |
| 8 | + ... |
| 9 | + }: |
3 | 10 | let
|
4 | 11 | lbg-haskell = "${config.packages.lbg-haskell}/bin/lbg-haskell";
|
5 | 12 | lbg-typescript = "${config.packages.lbg-typescript}/bin/lbg-typescript";
|
|
23 | 30 | lbfPurescript = import ./lbf-purescript.nix pkgs config.packages.lbf lbg-purescript;
|
24 | 31 | lbfPreludePurescript = import ./lbf-prelude-purescript.nix pkgs config.packages.lbf lbg-purescript;
|
25 | 32 | lbfPlutusPurescript = import ./lbf-plutus-purescript.nix pkgs config.packages.lbf lbg-purescript;
|
26 |
| - lbfTypescript = opts: import ./lbf-typescript.nix |
27 |
| - { |
| 33 | + lbfTypescript = |
| 34 | + opts: |
| 35 | + import ./lbf-typescript.nix { |
28 | 36 | inherit pkgs lbg-typescript;
|
29 | 37 | inherit (config.packages) lbf-list-modules-typescript lbf;
|
30 | 38 | inherit (inputs.flake-lang.lib.${system}) typescriptFlake;
|
31 |
| - } |
32 |
| - opts; |
33 |
| - lbfPreludeTypescript = opts: |
34 |
| - import ./lbf-prelude-typescript.nix |
35 |
| - { |
36 |
| - inherit pkgs lbg-typescript config; |
37 |
| - inherit (config.packages) lbf-list-modules-typescript lbf; |
38 |
| - inherit (inputs.flake-lang.lib.${system}) typescriptFlake; |
39 |
| - } |
40 |
| - opts; |
41 |
| - lbfPlutusTypescript = opts: |
42 |
| - import ./lbf-plutus-typescript.nix |
43 |
| - { |
44 |
| - inherit pkgs lbg-typescript config; |
45 |
| - inherit (config.packages) lbf-list-modules-typescript lbf; |
46 |
| - inherit (inputs.flake-lang.lib.${system}) typescriptFlake; |
47 |
| - } |
48 |
| - opts; |
| 39 | + } opts; |
| 40 | + lbfPreludeTypescript = |
| 41 | + opts: |
| 42 | + import ./lbf-prelude-typescript.nix { |
| 43 | + inherit pkgs lbg-typescript config; |
| 44 | + inherit (config.packages) lbf-list-modules-typescript lbf; |
| 45 | + inherit (inputs.flake-lang.lib.${system}) typescriptFlake; |
| 46 | + } opts; |
| 47 | + lbfPlutusTypescript = |
| 48 | + opts: |
| 49 | + import ./lbf-plutus-typescript.nix { |
| 50 | + inherit pkgs lbg-typescript config; |
| 51 | + inherit (config.packages) lbf-list-modules-typescript lbf; |
| 52 | + inherit (inputs.flake-lang.lib.${system}) typescriptFlake; |
| 53 | + } opts; |
49 | 54 | lbfRust = import ./lbf-rust.nix pkgs config.packages.lbf lbg-rust;
|
50 | 55 | lbfPreludeRust = import ./lbf-prelude-rust.nix pkgs config.packages.lbf lbg-rust;
|
51 | 56 | lbfPlutusRust = import ./lbf-plutus-rust.nix pkgs config.packages.lbf lbg-rust;
|
|
0 commit comments