Skip to content

Commit

Permalink
chore: update flake files
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie committed Dec 3, 2024
1 parent 3c739b4 commit 00ca4f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions flake.lock

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

12 changes: 4 additions & 8 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
{
description = "Flake to develop the CDapp using nix(OS)";
description = "Flake to develop ABIs using nix(OS)";

inputs = {
nixpkgs_node.url = "github:NixOS/nixpkgs/nixos-unstable";
};

outputs = {
self,
nixpkgs_node
nixpkgs_node,
}: {
devShell.x86_64-linux = with nixpkgs_node.legacyPackages.x86_64-linux;
mkShell {
buildInputs = [nodejs_20 pnpm_8 python3 zsh];
shellHook = ''
if [ -n "$SHELL" ]; then
exec $SHELL
fi
'';
buildInputs = [nodejs_20 pnpm_8 zsh];
shellHook = "exec zsh";
};
};
}

0 comments on commit 00ca4f9

Please sign in to comment.