with import <nixpkgs> {};
let
nix_ = nix.overrideAttrs (old : {
storeDir = "/tmp/blargh3/nix-store";
stateDir = "/tmp/blargh3/nix-state";
confDir = "/tmp/blargh3/nix-conf";
doInstallCheck=false;
buildInputs = lib.filter (x: (builtins.parseDrvName x.name).name != "aws-sdk-cpp") old.buildInputs;
});
in
nix_