diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-29 16:39:14 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-29 16:39:14 +0100 |
| commit | dfc45729d342f6f4d4d9ea39649c49b49fa178c6 (patch) | |
| tree | fd66c76073b0eff3f184e1dcaa612c9e73eb7efd /kel_cpp_boilerplate/.nix/derivation.nix | |
| download | apps-dev_tools-dfc45729d342f6f4d4d9ea39649c49b49fa178c6.tar.gz | |
Initial commit
Diffstat (limited to 'kel_cpp_boilerplate/.nix/derivation.nix')
| -rw-r--r-- | kel_cpp_boilerplate/.nix/derivation.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/kel_cpp_boilerplate/.nix/derivation.nix b/kel_cpp_boilerplate/.nix/derivation.nix new file mode 100644 index 0000000..7b2fd2d --- /dev/null +++ b/kel_cpp_boilerplate/.nix/derivation.nix @@ -0,0 +1,23 @@ +{ stdenv +, scons +, clang-tools +, forstio +}: + +stdenv.mkDerivation { + pname = "kel_cpp_boilerplate"; + version = "0.0.0"; + + nativeBuildInputs = [ + clang-tools + scons + ]; + + buildInputs = [ + forstio.core + forstio.codec + forstio.codec-json + ]; + + src = ./..; +} |
