diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/default.nix b/default.nix index 52cd500..890fccd 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,7 @@ { pkgs ? import <nixpkgs> {} -, 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; + }; }; } |
