blob: 2ed8c2a50fa980373d454c77a7e20db2c5379037 (
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
28
|
{ pkgs ? import <nixpkgs> {}
, stdenv ? pkgs.stdenv
, clang-tools ? pkgs.clang-tools_16
}:
let
forstio = (import ((builtins.fetchGit {
url = "git@git.keldu.de:forstio/forstio";
ref = "dev";
}).outPath + "/default.nix"){
inherit stdenv;
inherit clang-tools;
}).forstio;
kel-unit = (import ((builtins.fetchGit {
url = "git@git.keldu.de:libs/unit";
ref = "dev";
}).outPath + "/default.nix"){
inherit stdenv;
inherit clang-tools;
});
in pkgs.callPackage ./.nix/derivation.nix {
inherit forstio;
inherit kel-unit;
inherit stdenv;
inherit clang-tools;
}
|