summaryrefslogtreecommitdiff
path: root/default.nix
blob: f7c4be7051018d060d6cf5e1f1cca12298220c56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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
}:

pkgs.callPackage ./.nix/derivation.nix {
	inherit forstio;
}