summaryrefslogtreecommitdiff
path: root/default.nix
blob: 2bb91d8c65e82b112db76db0a67c46e6764b6853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs ? import <nixpkgs> {}
, clang ? pkgs.clang_15
, clang-tools ? pkgs.clang-tools_15
}:

let
  forstio = (import ((builtins.fetchGit {
    url = "git@git.keldu.de:forstio/forstio";
    ref = "dev";

  }).outPath + "/default.nix"){
    inherit clang;
    inherit clang-tools;
  }).forstio;

in pkgs.callPackage ./.nix/derivation.nix {
  inherit forstio;
  inherit clang;
  inherit clang-tools;
}