diff options
Diffstat (limited to 'html/.nix/derivation.nix')
-rw-r--r-- | html/.nix/derivation.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/html/.nix/derivation.nix b/html/.nix/derivation.nix new file mode 100644 index 0000000..607c595 --- /dev/null +++ b/html/.nix/derivation.nix @@ -0,0 +1,16 @@ +{ stdenv +, lights_out_wasm +, pname +, version +}: + +stdenv.mkDerivation { + inherit pname version; + + src = ./..; + + installPhase = '' + mkdir $out + touch $out/side + ''; +} |