summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 480dc894a05a232c27b4fbec3a6a77976a10178a (plain)
1
2
3
4
5
6
7
8
9
with import <nixpkgs> {};

mkShell {
  name = "nix-build-ephemeral dev";
  buildInputs = with pkgs; [
    python3
    doctl
  ];
}