diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-03-03 14:01:10 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-03-03 14:01:10 +0100 |
commit | 7abcc7c96ce891128858089e34afc2e986b1ab19 (patch) | |
tree | f0b5e4b82e93feec54450e232e28588fb6e8f107 /default.nix | |
parent | 1b553907f0d09671f7036a5cca1ff93021582d5c (diff) |
wip
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/default.nix b/default.nix index 2ed8c2a..d92720d 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,5 @@ { pkgs ? import <nixpkgs> {} -, stdenv ? pkgs.stdenv +, stdenv ? pkgs.llvmPackages_19.stdenv , clang-tools ? pkgs.clang-tools_16 }: @@ -12,17 +12,8 @@ let 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; } |