-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
36 lines (31 loc) · 1.01 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
{
description = "Flake for Holochain app development";
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, ... }: {
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
packages = (with inputs'.holonix.packages; [
holochain
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\] '
'';
};
};
};
}