We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original: mlabs-haskell/lambda-buffers#139
Check out some of the Haskell build.nix files in the repo...
build.nix
runtimes/haskell/lbr-prelude/build.nix:
... { devShells.dev-lbr-prelude-haskell = hsFlake.devShell; packages = { lbr-prelude-haskell-src = pkgs.stdenv.mkDerivation { name = "lbr-prelude-haskell-src"; src = ./.; phases = "installPhase"; installPhase = "ln -s $src $out"; }; } // hsFlake.packages; inherit (hsFlake) checks; }; }
or
runtimes/haskell/lbr-plutus/build.nix:
devShells.dev-lbr-plutus-haskell = hsFlake.devShell; packages = { lbr-plutus-haskell-src = pkgs.stdenv.mkDerivation { name = "lbr-plutus-haskell-src"; src = ./.; phases = "installPhase"; installPhase = "ln -s $src $out"; }; lbr-plutus-haskell-lib = hsFlake.packages."lbr-plutus:lib:lbr-plutus"; lbr-plutus-haskell-tests = hsFlake.packages."lbr-plutus:test:tests"; }; inherit (hsFlake) checks; };
Ideally one would just inherit hsFlake (packages, devShell, checks) but for SOME reason this ends in infinite recursion encountered.
inherit hsFlake (packages, devShell, checks)
infinite recursion encountered
It's not urgent, but I foresee people being very confused by this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original: mlabs-haskell/lambda-buffers#139
Check out some of the Haskell
build.nix
files in the repo...runtimes/haskell/lbr-prelude/build.nix:
or
runtimes/haskell/lbr-plutus/build.nix:
Ideally one would just
inherit hsFlake (packages, devShell, checks)
but for SOME reason this ends ininfinite recursion encountered
.It's not urgent, but I foresee people being very confused by this.
The text was updated successfully, but these errors were encountered: