tvl-depot/shell.nix
William Carroll c6dac53b72 Drop support for cloudtop
While I do still technically own a Google cloudtop device, I haven't used it in
at least six months. In the interest of pruning non-critical dependencies, I'm
deleting it. I can alway restore it thanks to Git.
2020-03-05 15:04:04 +00:00

13 lines
406 B
Nix

{ 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";
}