From dfc45729d342f6f4d4d9ea39649c49b49fa178c6 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 29 Oct 2025 16:39:14 +0100 Subject: Initial commit --- default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 default.nix (limited to 'default.nix') diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..52cd500 --- /dev/null +++ b/default.nix @@ -0,0 +1,17 @@ +{ 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 { + kel_cpp_boilerplate = pkgs.callPackage ./kel_cpp_boilerplate/.nix/derivation.nix { + inherit stdenv clang-tools forstio; + }; +} -- cgit v1.2.3