Skip to content

Commit

Permalink
updated flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Jan 26, 2024
1 parent d915eac commit 7b3b19f
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 44 deletions.
130 changes: 90 additions & 40 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
description = "Nix shell for Holochain app development";

inputs = {
holonix.url = "github:holochain/holochain";
nixpkgs.follows = "holonix/nixpkgs";
versions.url = "github:holochain/holochain?dir=versions/0_1";
holonix.url = "github:holochain/holochain";
holonix.inputs.versions.follows = "versions";
};

outputs = inputs@{ holonix, ... }:
Expand All @@ -14,12 +16,12 @@
perSystem = { config, system, pkgs, ... }:
{
devShells.default = pkgs.mkShell {
inputsFrom = [ holonix.devShells.${system}.holonix ];
inputsFrom = [ holonix.devShells.${system}.holochainBinaries ];
packages = with pkgs; [
# add further packages from nixpkgs
nodejs
# nodejs
];
};
};
};
}
}

0 comments on commit 7b3b19f

Please sign in to comment.