diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-29 17:16:47 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-29 17:16:47 +0100 |
| commit | 0b3acb991f11d9ace340f75bc2f8a454ea385fae (patch) | |
| tree | 15d9a49af39febab9576174a445a557df4f80174 /kel_cpp_boilerplate/c++/blueprints/default_nix.hpp | |
| parent | dfc45729d342f6f4d4d9ea39649c49b49fa178c6 (diff) | |
| download | apps-dev_tools-0b3acb991f11d9ace340f75bc2f8a454ea385fae.tar.gz | |
Got to a first satisfying state for this boilerplate generator
Diffstat (limited to 'kel_cpp_boilerplate/c++/blueprints/default_nix.hpp')
| -rw-r--r-- | kel_cpp_boilerplate/c++/blueprints/default_nix.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kel_cpp_boilerplate/c++/blueprints/default_nix.hpp b/kel_cpp_boilerplate/c++/blueprints/default_nix.hpp index 312ad7f..6edb8e1 100644 --- a/kel_cpp_boilerplate/c++/blueprints/default_nix.hpp +++ b/kel_cpp_boilerplate/c++/blueprints/default_nix.hpp @@ -1,10 +1,10 @@ #pragma once #include <string_view> -constexpr std::string_view default_nix_file_name = "default.nix"; +constexpr std::string_view default_nix_file_path = "default.nix"; -constexpr std::string_view default_nix_file_content = R"( -{ pkgs ? import <nixpkgs> {} +constexpr std::string_view default_nix_file_content = +R"({ pkgs ? import <nixpkgs> {} , stdenv ? pkgs.llvmPackages_19.stdenv , clang-tools ? pkgs.clang-tools_19 }: |
