Skip to content

Commit 82f50a0

Browse files
committed
Merge branch 'main' of github.com:mlabs-haskell/lambda-buffers into szg251/simplified-rust-flake
2 parents e716d60 + 7dee7ea commit 82f50a0

File tree

36 files changed

+4105
-180
lines changed

36 files changed

+4105
-180
lines changed

docs/typescript-plutus/api/lbf/build.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ _:
22
{
33
perSystem = { config, ... }:
44
let
5-
tsFlake =
5+
lbf-plutus-sample-project-typescript =
66
config.lbf-nix.lbfPlutusTypescript {
77
name = "lbf-plutus-sample-project";
88
src = ./.;
@@ -11,7 +11,7 @@ _:
1111
in
1212
{
1313
packages = {
14-
inherit (tsFlake.packages) lbf-plutus-sample-project-typescript lbf-plutus-sample-project-typescript-tgz;
14+
inherit lbf-plutus-sample-project-typescript;
1515
};
1616
};
1717
}

docs/typescript-plutus/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
src = ./.;
1111

1212
npmExtraDependencies = [
13-
config.packages.lbf-plutus-sample-project-typescript-tgz
13+
config.packages.lbf-plutus-sample-project-typescript
1414
];
1515

1616
devShellTools = config.settings.shell.tools;

docs/typescript-prelude/api/lbf/build.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ _:
22
{
33
perSystem = { config, ... }:
44
let
5-
tsFlake =
5+
lbf-prelude-sample-project-typescript =
66
config.lbf-nix.lbfPreludeTypescript {
77
name = "lbf-prelude-sample-project";
88
src = ./.;
@@ -11,7 +11,7 @@ _:
1111
in
1212
{
1313
packages = {
14-
inherit (tsFlake.packages) lbf-prelude-sample-project-typescript lbf-prelude-sample-project-typescript-tgz;
14+
inherit lbf-prelude-sample-project-typescript;
1515
};
1616
};
1717
}

docs/typescript-prelude/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
name = "prelude-sample-project";
1010
src = ./.;
1111
npmExtraDependencies = [
12-
config.packages.lbf-prelude-sample-project-typescript-tgz
12+
config.packages.lbf-prelude-sample-project-typescript
1313
];
1414

1515
devShellTools = config.settings.shell.tools;

extras/lbf-nix/lbf-typescript.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ let
276276
});
277277
});
278278
in
279-
lbTypescriptFlake
279+
lbTypescriptFlake.packages."${name}-typescript-tgz"

0 commit comments

Comments
 (0)