From f05bcdc8677efef097b4849e8893d2702640ed2c Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Fri, 10 Jul 2020 22:37:25 -0700 Subject: dev: fixes for macos build --- shell.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index b141289..a83b9af 100644 --- a/shell.nix +++ b/shell.nix @@ -3,20 +3,20 @@ }: let - nixpkgs = import ./nix/nixpkgs.nix; + nixpkgs = import ./nix/default.nix; basepkgs = import ./Biz/packages.nix { inherit (nixpkgs) pkgs; }; devpkgs = with nixpkgs; [ hlint - niv + #niv ormolu python37Packages.black python37Packages.pylint wemux - ] -in nixpkgs.mkShell ({ + ]; +in nixpkgs.mkShell { name = "bizdev"; - buildInputs = devpkgs ++ basepkgs.environment.systemPackages; + buildInputs = devpkgs; shellHook = '' echo "biz" | ${nixpkgs.figlet}/bin/figlet | ${nixpkgs.lolcat}/bin/lolcat ''; -}) +} -- cgit v1.2.3