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

let
  forstio = (import ((builtins.fetchGit {
    url = "git@git.keldu.de:forstio/forstio";
    ref = "dev";
  }).outPath + "/default.nix"){
    inherit stdenv;
    inherit clang-tools;
  }).forstio;

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