Skip to content

Instantly share code, notes, and snippets.

@heathdrobertson
Created December 3, 2019 18:02
Show Gist options
  • Save heathdrobertson/d855a77ff685005ae11a7aa6de31ab19 to your computer and use it in GitHub Desktop.
Save heathdrobertson/d855a77ff685005ae11a7aa6de31ab19 to your computer and use it in GitHub Desktop.
Building an Ethereum Dapp development container with Nix Shell.
with import <nixpkgs> {};
# with pkgs;
stdenv.mkDerivation {
name = "dapp_monkey";
buildInputs = [python37 nodejs];
shellHook = ''
npm install body-parser express morgan nodemon web3
'';
}
with import <nixpkgs> {};
# with pkgs;
stdenv.mkDerivation {
name = "dapp_monkey";
buildInputs = [python37 nodejs];
shellHook = ''
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment