-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
47 lines (42 loc) · 1.61 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
description = "Flake for Holochain app development with customized Holochain build";
inputs = {
holonix.url = "github:holochain/holonix?ref=main";
nixpkgs.follows = "holonix/nixpkgs";
flake-parts.follows = "holonix/flake-parts";
};
outputs = inputs@{ flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } {
systems = builtins.attrNames inputs.holonix.devShells;
perSystem = { inputs', pkgs, ... }:
let
# Disable default features and enable wasmer_wamr for a wasm interpreter,
# as well as re-enabling tx5 and sqlite-encrypted.
cargoExtraArgs = "--no-default-features --features wasmer_wamr,sqlite-encrypted,tx5";
# Override arguments passed in to Holochain build with above feature arguments.
customHolochain = inputs'.holonix.packages.holochain.override { inherit cargoExtraArgs; };
in
{
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
packages = [
# Include custom build of Holochain in dev shell.
customHolochain
]
++ (with inputs'.holonix.packages; [
lair-keystore
hc-launch
hc-scaffold
hn-introspect
rust # For Rust development, with the WASM target included for zome builds
]) ++ (with pkgs; [
nodejs_20 # For UI development
binaryen # For WASM optimisation
# Add any other packages you need here
]);
shellHook = ''
export PS1='\[\033[1;34m\][holonix:\w]\$\[\033[0m\] '
'';
};
};
};
}