Refactor jupyenv
fixes: #485 #484 #497 #525 #482 #477 #478 #479 #388 #371 #328 #284 #527
Deploy Preview for tweag-jupyterwith ready!
| Name | Link |
|---|---|
| Latest commit | 38ee7c1192a3771b88796fc3022a5b4f12a26418 |
| Latest deploy log | https://app.netlify.com/sites/tweag-jupyterwith/deploys/65c3fbc9464d210008adba0f |
| Deploy Preview | https://deploy-preview-524--tweag-jupyterwith.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
@balsoft refactor-stage1 has been DONE.
I've tried to set extraHaskellPackages = p: [ p.bytestring p.text ] for the haskell kernel but if fails because those are null in nixpkgs and the option expects a function towards a list of packages
extraHaskellPackages = lib.mkOption {
type = types.functionTo (types.listOf types.package);
default = _: [];
I think it would be less surprising to have
extraHaskellPackages = lib.mkOption {
type = types.functionTo (types.listOf (types.nullOr types.package));
default = _: [];
@teto Thanks, fixed
@GTrunSec , just wondering what work needs to be wrapped up here to push these changes. Is it just the failing haskell test that is blocking? I would love to help!
@aniinbkln the building of Haskell is ok, just no maintainer(with the PR permission) in this project.
mac m1 user awaiting fix ;)