summaryrefslogtreecommitdiff
path: root/html/.nix/derivation.nix
blob: 607c595bd0f6b55e80d22d5c5b1db4307d98fe64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv
, lights_out_wasm
, pname
, version
}:

stdenv.mkDerivation {
	inherit pname version;

	src = ./..;

	installPhase = ''
		mkdir $out
		touch $out/side
	'';
}