{ pkgs ? import {} , stdenv ? pkgs.llvmPackages_16.stdenv , clang-tools ? pkgs.clang-tools_16 }: let version = "0.0.0"; in rec { forstio = { core = pkgs.callPackage c++/core/.nix/derivation.nix { inherit version; inherit stdenv; inherit clang-tools; }; test = pkgs.callPackage c++/test/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; async = pkgs.callPackage c++/async/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; codec = pkgs.callPackage c++/codec/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; codec-json = pkgs.callPackage c++/codec-json/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; codec-netcdf = pkgs.callPackage c++/codec-netcdf/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; io = pkgs.callPackage c++/io/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; io-tls = pkgs.callPackage c++/io-tls/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; window = pkgs.callPackage c++/window/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; window-opengl = pkgs.callPackage c++/window-opengl/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; tools = pkgs.callPackage c++/tools/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; }; forstio-test-cases = pkgs.callPackage tests/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; inherit clang-tools; }; }