summaryrefslogtreecommitdiff
path: root/default.nix
blob: 5d500fafddbc5419efb680d54845e887d07bc632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ 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;
		};

		rap = pkgs.callPackage ./kel_rap/.nix/derivation.nix {
			inherit stdenv clang-tools;
		};
	};
}