Skip to content

Commit 2c495d2

Browse files
committed
Still not working
1 parent 8be7087 commit 2c495d2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/build.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# TODO(bladyjoker): Make packages that actually try and compile.
33
{ inputs, ... }:
44
{
5-
perSystem = { pkgs, config, ... }: {
5+
perSystem = { pkgs, config, system, ... }: {
66

77
packages = {
88
lbf-prelude = pkgs.stdenv.mkDerivation {
@@ -152,7 +152,7 @@
152152
# - the CLI application (`lbf-prelude-to-haskell`) to compile `.lbf`
153153
# schemas
154154
let
155-
hsFlake = config.lbf-nix.haskellFlake {
155+
hsFlake = inputs.flake-lang.lib.${system}.haskellFlake {
156156
src = config.packages.lbf-prelude-haskell;
157157

158158
name = "dev-prelude-haskell";
@@ -188,7 +188,7 @@
188188
# Note:
189189
# This is mostly duplicated code from `dev-prelude-haskell`
190190
let
191-
hsFlake = config.lbf-nix.haskellPlutusFlake {
191+
hsFlake = inputs.flake-lang.lib.${system}.haskellPlutusFlake {
192192
src = config.packages.lbf-plutus-haskell;
193193

194194
name = "dev-plutustx";
@@ -221,7 +221,7 @@
221221

222222
dev-plutarch =
223223
let
224-
hsFlake = config.lbf-nix.haskellPlutusFlake {
224+
hsFlake = inputs.flake-lang.lib.${system}.haskellPlutusFlake {
225225
src = config.packages.lbf-plutus-plutarch;
226226

227227
name = "dev-plutarch";

testsuites/lbt-plutus/lbt-plutus-plutarch/build.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{ inputs, ... }:
22
{
3-
perSystem = { config, ... }:
3+
perSystem = { config, system, ... }:
44
let
5-
hsFlake = config.lbf-nix.haskellPlutusFlake {
5+
hsFlake = inputs.flake-lang.lib.${system}.haskellPlutusFlake {
66
src = ./.;
77

88
name = "lbt-plutus-plutarch";

0 commit comments

Comments
 (0)