Created
September 11, 2018 13:47
-
-
Save rummik/8761c5c4f8aa7686188d49ae4c808b7f to your computer and use it in GitHub Desktop.
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> {}; | |
stdenv.mkDerivation { | |
name = "shellcast-web"; | |
buildInputs = [ | |
nodejs-8_x | |
(yarn.override { nodejs = nodejs-8_x; }) | |
]; | |
shellHook = '' | |
export PATH="$PWD/node_modules/.bin/:$PATH" | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment