blob: 890fccdccbe940c410b10786820c9b66c8affa87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ pkgs ? import <nixpkgs> {}
, llvmPackages ? pkgs.llvmPackages_21
, stdenv ? llvmPackages.stdenv
, clang-tools ? llvmPackages.clang-tools
}:
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;
};
cmds = pkgs.callPackage ./kel_cmds/.nix/derivation.nix {
inherit stdenv clang-tools forstio;
};
};
}
|