summaryrefslogtreecommitdiff
path: root/.nix/derivation.nix
blob: fd41fc149f861a06252b3c661aa9969c8c71ead6 (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 = "icosahedrical_destruction";
	version = "0.0.0";

	src = ./..;

	nativeBuildInputs = [
		scons
		forstio.core
	];

  doCheck = true;
  checkPhase = ''
    scons test
    ./bin/tests
  '';
}