#pragma once #include constexpr std::string_view derivation_nix_dir_name = "app/.nix"; constexpr std::string_view derivation_nix_file_name = "derivation.nix"; constexpr std::string_view derivation_nix_file_content = R"( { stdenv , scons , clang-tools , forstio }: stdenv.mkDerivation { // pname = ""; // Actually add a name version = "0.0.0"; nativeBuildInputs = [ clang-tools scons ]; buildInputs = [ forstio.core ]; src = ./..; } )";