summaryrefslogtreecommitdiff
path: root/.nix/derivation.nix
blob: 94f5bb75ef17d99e9263db32c8c1a59cfae350d0 (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
, forstio
}:

stdenvNoCC.mkDerivation {
  pname = "kel-unit";
  version = "0.0.0";
  src = ./..;

  nativeBuildInputs = [
    scons
    clang
  ];

  buildInputs = [
    forstio.core
  ];

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