diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-06-19 20:29:35 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-06-19 20:29:35 +0200 |
commit | 1ffd926babdbdf90ea05fbf044155c8ee348106e (patch) | |
tree | 360c81048ef8503e62dfe6ec3d807e1d9e3bdb00 /default.nix | |
parent | f40cc407b07803280862f94cda47453a1a3b6e82 (diff) |
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/default.nix b/default.nix index f93b364..0ea5cdf 100644 --- a/default.nix +++ b/default.nix @@ -1,18 +1,28 @@ { pkgs ? import <nixpkgs> {} +, clang ? pkgs.clang_15 +, clang-tools ? pkgs.clang-tools_15 }: let forstio = (import ((builtins.fetchGit { url = "git@git.keldu.de:forstio/forstio"; ref = "dev"; - }).outPath + "/default.nix"){}).forstio; + }).outPath + "/default.nix"){ + inherit clang; + inherit clang-tools; + }).forstio; kel-unit = (import ((builtins.fetchGit { url = "git@git.keldu.de:libs/unit"; ref = "dev"; - }).outPath + "/default.nix"){}); + }).outPath + "/default.nix"){ + inherit clang; + inherit clang-tools; + }); in pkgs.callPackage ./.nix/derivation.nix { inherit forstio; inherit kel-unit; + inherit clang; + inherit clang-tools; } |