aboutsummaryrefslogtreecommitdiff
path: root/infra/corenix/pkgs/coreboot/update-shell.nix
blob: a2f2da23b6f83f6b3981d85b568847ab3c03be8e (plain)
1
2
3
4
5
6
7
8
9
10
11
let
  sources = import ../../nix/sources.nix;
  pkgs = import sources.nixpkgs {};
in

with pkgs;

mkShell {
  buildInputs = [ nix git cacert getopt ];
  NIX_PATH = "nixpkgs=${sources.nixpkgs}";
}