diff options
author | stuebinm | 2021-03-07 16:46:52 +0100 |
---|---|---|
committer | stuebinm | 2021-03-07 16:46:52 +0100 |
commit | f4a1ee55987b7c58745dc5865c4ecf30874a3564 (patch) | |
tree | ee9c16adb458412bf19e1a93348f982928594a26 | |
parent | 0aaa2a1738b61b056b3e58f473d85e9eb5702402 (diff) |
add default.nix
Somewhat basic for now, but it does build a directory with a functioning
website inside of it.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | default.nix | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,4 @@ elm-stuff/* app.js +Main.js result diff --git a/default.nix b/default.nix index 54ebd67..d597f70 100644 --- a/default.nix +++ b/default.nix @@ -36,6 +36,7 @@ let '') targets)} cp *.html $out cp *.css $out + cp -r example $out/ ''; }; in mkDerivation { |