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

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;
}