summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-10-29 16:39:14 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-10-29 16:39:14 +0100
commitdfc45729d342f6f4d4d9ea39649c49b49fa178c6 (patch)
treefd66c76073b0eff3f184e1dcaa612c9e73eb7efd /default.nix
downloadapps-dev_tools-dfc45729d342f6f4d4d9ea39649c49b49fa178c6.tar.gz
Initial commit
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix17
1 files changed, 17 insertions, 0 deletions
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 <nixpkgs> {}
+, 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;
+ };
+}