blob: 52cd500e6bdd2b9ed066b55e7f37a10028aa4428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
};
}
|