tvl-depot/shell.nix

14 lines
406 B
Nix
Raw Normal View History

{ pkgs, ... }:
pkgs.mkShell rec {
buildInputs = [];
# TODO(wpcarro): How does pkgs.mkShell handle exported and non-exported
# variable definitions?
BRIEFCASE = builtins.toPath ~/briefcase;
DEPOT = builtins.toPath ~/depot;
NIXPKGS = builtins.toPath ~/nixpkgs;
NIX_PATH="nixpkgs=${NIXPKGS}:depot=${DEPOT}:briefcase=${BRIEFCASE}";
DESKTOP = "zeno.lon.corp.google.com";
LAPTOP = "seneca";
}