From 00ca4f9e938596d5ac074d53e0219a39897e2fea Mon Sep 17 00:00:00 2001 From: Chris Maniewski Date: Tue, 3 Dec 2024 12:07:52 +0100 Subject: [PATCH] chore: update flake files --- flake.lock | 6 +++--- flake.nix | 12 ++++-------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/flake.lock b/flake.lock index 7f6e868..871cd34 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs_node": { "locked": { - "lastModified": 1726937504, - "narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=", + "lastModified": 1733015953, + "narHash": "sha256-t4BBVpwG9B4hLgc6GUBuj3cjU7lP/PJfpTHuSqE+crk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9357f4f23713673f310988025d9dc261c20e70c6", + "rev": "ac35b104800bff9028425fec3b6e8a41de2bbfff", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3c4fb7c..b3a100c 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - 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"; @@ -7,16 +7,12 @@ 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"; }; }; }