7 lines
124 B
Nix
7 lines
124 B
Nix
|
{ depot, pkgs, ... }:
|
||
|
|
||
|
pkgs.runCommandNoCC "monsterpoker.app" {} ''
|
||
|
mkdir -p $out
|
||
|
cp ${./index.html} $out/index.html
|
||
|
''
|