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

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

  enableParallelBuilding = true;

  nativeBuildInputs = [
    scons
    clang
    clang-tools
  ];

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