#pragma once #include constexpr std::string_view default_nix_file_name = "default.nix"; constexpr std::string_view default_nix_file_content = R"( { pkgs ? import {} , stdenv ? pkgs.llvmPackages_19.stdenv , clang-tools ? pkgs.clang-tools_19 }: let forstio = (import ((builtins.fetchGit { url = "git@git.keldu.de:forstio/forstio"; ref = "dev"; }).outPath + "/default.nix"){ inherit stdenv; }).forstio; in { app = pkgs.callPackage ./app/.nix/derivation.nix { inherit stdenv clang-tools forstio; }; } )";