From 17247f927d3cec408f6fc541629a5fef5344b07e Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sun, 19 Apr 2020 17:51:48 -0700 Subject: Unify dev packages and base packages --- shell.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index c0d1e6a..b141289 100644 --- a/shell.nix +++ b/shell.nix @@ -4,17 +4,18 @@ let nixpkgs = import ./nix/nixpkgs.nix; + basepkgs = import ./Biz/packages.nix { inherit (nixpkgs) pkgs; }; + devpkgs = with nixpkgs; [ + hlint + niv + ormolu + python37Packages.black + python37Packages.pylint + wemux + ] in nixpkgs.mkShell ({ name = "bizdev"; - buildInputs = [ - nixpkgs.git - nixpkgs.hlint - nixpkgs.niv - nixpkgs.ormolu - nixpkgs.python37Packages.black - nixpkgs.python37Packages.pylint - nixpkgs.wemux - ]; + buildInputs = devpkgs ++ basepkgs.environment.systemPackages; shellHook = '' echo "biz" | ${nixpkgs.figlet}/bin/figlet | ${nixpkgs.lolcat}/bin/lolcat ''; -- cgit v1.2.3