summaryrefslogtreecommitdiff
path: root/src/core/.nix/derivation.nix
blob: adf0cb498d6331a76e584f52cc9ce38d212187ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, stdenvNoCC
, scons
, clang
, clang-tools
, version
}:

let

in stdenvNoCC.mkDerivation {
  pname = "forstio-core";
  inherit version;

  src = ./..;

  enableParallelBuilding = true;

  nativeBuildInputs = [
    scons
    clang
    clang-tools
  ];

  outputs = ["out" "dev"];
}