summaryrefslogtreecommitdiff
path: root/.nix/derivation.nix
blob: a927e8d0cee84a3ea843672291a36ee2e6497714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv
, scons
}:
stdenv.mkDerivation {
	pname = "icosahedrical_destruction";
	version = "0.0.0";

	src = ./..;

	nativeBuildInputs = [
		scons
	];
}