{ pkgs ? import {} , 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 rec { forstio-examples = { tools = pkgs.callPackage ./tools/.nix/derivation.nix { inherit stdenv; inherit clang-tools; inherit version; inherit forstio; }; json = pkgs.callPackage ./json/.nix/derivation.nix { inherit stdenv; inherit clang-tools; inherit version; inherit forstio; }; }; all = pkgs.symlinkJoin { name = "forstio_examples-${version}"; paths = [ forstio-examples.tools ]; }; }