Created
December 3, 2019 18:02
-
-
Save heathdrobertson/d855a77ff685005ae11a7aa6de31ab19 to your computer and use it in GitHub Desktop.
Building an Ethereum Dapp development container with Nix Shell.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; | |
# with pkgs; | |
stdenv.mkDerivation { | |
name = "dapp_monkey"; | |
buildInputs = [python37 nodejs]; | |
shellHook = '' | |
npm install body-parser express morgan nodemon web3 | |
''; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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