-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
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
bs-platform: init at 6.2.1 #73570
bs-platform: init at 6.2.1 #73570
Conversation
This pull request has been mentioned on NixOS Discourse. There might be relevant details there: |
FYI: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently i forgot to submit this review from 3 days ago, sorry if old
d4b3643
to
6f132bf
Compare
a3f249d
to
a5ce929
Compare
Phases are refactored, binaries tested:
|
rm -f vendor/ninja/snapshot/ninja.linux | ||
cp ${ninja}/bin/ninja vendor/ninja/snapshot/ninja.linux |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the uglieast part as it seesm to be linux specific. That's being said build succeeds and binaries work even on macos
The issue i'm seeing now is that calling the
Basically because it'll look for bs-platform under Relevant discussion here: rescript-lang/rescript#3276 Maybe we want |
@gamb And how do you have your project setuped? I belive you need to have bs-platform as a dependecy in your node_modules as well and it has to be the same version. I just install project dependecies using |
a5ce929
to
eba95ee
Compare
@turboMaCk Not sure that is working for me. My motivation is around not having to
The above is using the reason-react boilerplate. package.json contains: "dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"bs-platform": "^6.2.1",
"moduleserve": "^0.8.4"
} If I initialize my project with
Note that with the symlinked version above |
@gamb I think it is not possible to avoid yarn/npm install due to bsb internals now. I agree it is both slow and akward that it realies so much on nodejs package management but this is something that needs to be solved in upstream. For me this solves primarly the problem of not being able to install bs-platform on NixOS at all (yarn/npm installation failing on compilation of native depandencies). |
To explain more - yes yarn is expected to install bs platform to node_packages but it detects you already have binaries in system. Without this installed it would simply fail during yarn install. Usually people who really need this are either using some workarounds or building projects within docker. |
@turboMaCk Thanks. Good to sanity check that it's a pain for everyone then 😄 the BS thread I linked to should hopefully yield something. Since 6.x I'm finding that
But it's slow. This Nix expression definitely gets me closer to a shareable Reason/BS environment anyway, so thanks :) |
@gamb That is interesting because for me it's failing.
At least in case of When it comes to avoiding installation via yarn I think you can define |
eba95ee
to
458fbdd
Compare
I'm marking rather as WIP until we resolve all questions around how this suppose to interact with node_modules. |
@gamb So I was looking more into this and I uncovered several things:
This is an example { pkgs ? import <nixpkgs> {} }:
with pkgs;
let
bs-platform-src =
fetchFromGitHub {
owner = "turboMaCk";
repo = "bs-platform.nix";
rev = "c20e8dc8703ad7975c99d76b5779d31c86078d98";
sha256 = "06wii6487crawi7ngbls59snvygqhh29jz5f9q106m3vp9jzy7h9";
};
bs-platform =
import "${bs-platform-src}/bs-platform.nix"
{ inherit stdenv fetchFromGitHub ninja nodejs python35; };
in
mkShell {
buildInputs = [ bs-platform nodejs ];
shellHook = ''
mkdir -p node_modules
ln -sf ${bs-platform} node_modules/bs-platform
echo "bs-platform linked to $(pwd)/node_modules/bs-platform"
npm install
'';
} Does this work for you? Is it a good enough solution or do you have any ideas about improvements. Also since you seems to be invested, would you mind if I added you as a 2nd maitainer of this package in the meta? |
@turboMaCk Thanks! Yes interested in hacking on this some more, so feel free to add me to maintainers. That shell works pretty nicely for my purposes - will experiment some more with it. Only issue I ran into is that the symlink won't apply properly if the
For interop with npm scripts (i.e.
|
9b710a1
to
3c5f790
Compare
github = "gamb"; | ||
githubId = 293586; | ||
name = "Adam Gamble"; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gamb please check if this info is correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@turboMaCk Thanks, looks good 👍
@jonringer if you find a time to review this again feel free to do so. I think we've cleared everything within the code. |
3c5f790
to
a2e38ba
Compare
rebased onto master |
d1162dc
to
f6033fd
Compare
thanks for the review @FRidh. Build is now using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would have preferred more commits (like maintainer addition being separate), but otherwise LGTM
executable seems to work
[4 built, 1 copied (45.6 MiB), 9.2 MiB DL]
https://github.com/NixOS/nixpkgs/pull/73570
1 package were built:
bs-platform
f6033fd
to
e8a5a89
Compare
@jonringer now splitted to two commits. Is it better? |
@GrahamcOfBorg build bs-platform |
e8a5a89
to
542f4c5
Compare
rebased again |
@GrahamcOfBorg build bs-platform |
thanks so much @jonringer. |
I'm sorry, which approach is able to do? |
? |
Motivation for this change
bs-platform
is a BuckleScript compiler with set of additional tools. It is a OCaml/ReasonML compiler with javascript backend popular for building web and mobile apps. Official distribution is done via npm which doesn't work on NixOS (fails on build of native dependencies). This is an attempt to improve current status quo around bs-platform on NixOS full of workarounds.There was some previous attempt using
node2nix
which was closed. This PR avoids usage of NPM alltogether.In a meantime you can install bs-platform using this repository
Things done
bs-platform added to nixpkgs.
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @volth (who is maitainer listed as maintainer of ReasonML)
Credits
This is based on @hiroqn's project https://github.com/hiroqn/nix-bucklescript