From 79d736508617ff030b29cc8b432837cd19ddae18 Mon Sep 17 00:00:00 2001 From: Duane McKinney Date: Sun, 7 Sep 2025 15:23:10 -0500 Subject: [PATCH] Create shell.nix Add shell.nix to install dart2 and zulu, nix will already have a c compiler --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..a4e85586c --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +# Book restricts to a prior version of dart +# how I found previous version of dard https://www.nixhub.io/packages/dart +{ pkgs ? import (fetchTarball { + url = "https://github.com/NixOS/nixpkgs/archive/e040aab15638aaf8d0786894851a2b1ca09a7baf.tar.gz"; + sha256 = "01zbkazzfnp1lq7g5zk9s1xh53jwsny9aabng879n8csh1i8qbmk"; +}) {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.dart + pkgs.zulu + ]; +}