summaryrefslogtreecommitdiff
path: root/cell_renderer/.nix/derivation.nix
blob: 78b8efd5034b65bee3709c5b64feb36f4162140d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv
, scons
, forstio
}:

stdenv.mkDerivation {
	pname = "kel_cell_renderer";
	version = "0.0.0";

	nativeBuildInputs = [
		scons
	];

	buildInputs = [
		forstio.core
		forstio.codec
		forstio.codec-json
		forstio.remote
		forstio.remote-filesystem
	];

	src = ./..;
}