summaryrefslogtreecommitdiff
path: root/default.nix
blob: e9e3f330e12f7ef2e077f29d8dd68e906b057471 (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.llvmPackages_16.stdenv
, clang-tools ? pkgs.clang-tools_16
, forstio ? (import ((builtins.fetchGit {
    url = "git@git.keldu.de:forstio/forstio";
    ref = "dev";
  }).outPath + "/default.nix"){
    inherit stdenv;
    inherit clang-tools;
  }).forstio
}:

let
	version = "0.0.0";
in pkgs.callPackage ./.nix/derivation.nix {
	inherit stdenv;
	inherit clang-tools;
	inherit version;
	inherit forstio;
}