From 6eb839f219d80c018a58865a79f0623e839cef09 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 12 Jan 2026 16:05:22 +0100 Subject: Adding commands --- default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'default.nix') diff --git a/default.nix b/default.nix index 52cd500..890fccd 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,7 @@ { pkgs ? import {} -, stdenv ? pkgs.llvmPackages_19.stdenv -, clang-tools ? pkgs.clang-tools_19 +, llvmPackages ? pkgs.llvmPackages_21 +, stdenv ? llvmPackages.stdenv +, clang-tools ? llvmPackages.clang-tools }: let @@ -11,7 +12,12 @@ let inherit stdenv; }).forstio; in { - kel_cpp_boilerplate = pkgs.callPackage ./kel_cpp_boilerplate/.nix/derivation.nix { - inherit stdenv clang-tools forstio; + kel = { + cpp_boilerplate = pkgs.callPackage ./kel_cpp_boilerplate/.nix/derivation.nix { + inherit stdenv clang-tools forstio; + }; + cmds = pkgs.callPackage ./kel_cmds/.nix/derivation.nix { + inherit stdenv clang-tools forstio; + }; }; } -- cgit v1.2.3