Skip to content

Commit

Permalink
Merge pull request tweag#244 from tweag/refactor/nix-shell-refactor
Browse files Browse the repository at this point in the history
refactor: Move packages from buildInputs to packages
  • Loading branch information
mergify[bot] authored Jul 11, 2022
2 parents 95b82af + c61a469 commit ff98f6e
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{ pkgs ? import ./core/nixpkgs.nix { config = {}; overlays = []; } }:
{ pkgs ? import ./core/nixpkgs.nix {
config = { };
overlays = [ ];
} }:

with pkgs;

mkShell {
buildInputs = [
bazel_5
cacert
gcc
nix
git
];
name = "rules_nixpkgs_shell";
packages = [ bazel_5 bazel-buildtools cacert gcc nix git ];
}

0 comments on commit ff98f6e

Please sign in to comment.