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

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

	nativeBuildInputs = [
		scons
	];

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

	src = ./..;
}