diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-12 16:05:22 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-12 16:05:22 +0100 |
| commit | 6eb839f219d80c018a58865a79f0623e839cef09 (patch) | |
| tree | b9668086665748487cb9be6e8de5eaeda838405c /default.nix | |
| parent | af4bb05489eae478420a1792419fe43ee4b732d3 (diff) | |
| download | apps-dev_tools-6eb839f219d80c018a58865a79f0623e839cef09.tar.gz | |
Adding commands
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; + }; }; } |
