Skip to content

Expose nixWrapper and update the README. #708

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A linux webkitgtk version of chainweaver can be built and run in a number of dif
- This can be installed with `dpkg -i <deb file>` on ubuntu 18.04
- Chainweaver should be accessible in the applications menu.
- Run `nix-build -A chainweaverVM default.nix` to build a virtualbox ova file that runs chainweaver
- Run `WEBKIT_DISABLE_COMPOSITING_MODE=1 $(nix-build -A nixosExe)/bin/kadena-chainweaver` to run the linux app in nixos.
- Run `$(nix-build -A nixosWrapper)/bin/kadena-chainweaver-wrapper` to run the linux app in nixos.

### OVA Release

Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let
in obApp // rec {
inherit sass;
inherit (macApp) mac deployMac;
inherit (linuxApp) nixosExe deb chainweaverVM chainweaverVMSystem;
inherit (linuxApp) nixosExe nixosWrapper deb chainweaverVM chainweaverVMSystem;

server = { hostName, adminEmail, routeHost, enableHttps, version, module ? obelisk.serverModules.mkBaseEc2 }@args:
let
Expand Down