diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 17 |
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; + }; +} |
