#pragma once #include constexpr std::string_view derivation_nix_file_path = "app/.nix/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 = ./..; } )";