blob: 55824d008b22c65076579d678281f5cef8c0742b (
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_20
, 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;
};
};
}
|