diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-30 19:02:15 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-30 19:04:11 +0200 |
commit | a1583da62ea0f7e9affe868cd509557b5e91fae3 (patch) | |
tree | 5d5261d24c81f33f81a930bdfc42fe9904915d9e /modules/remote-sycl/.nix/derivation.nix | |
parent | 6379fe9ca2cad3d0c9d886e7808b1d579ce349c2 (diff) |
Fixing sycldev
Diffstat (limited to 'modules/remote-sycl/.nix/derivation.nix')
-rw-r--r-- | modules/remote-sycl/.nix/derivation.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/remote-sycl/.nix/derivation.nix b/modules/remote-sycl/.nix/derivation.nix index 28e3cc8..33317eb 100644 --- a/modules/remote-sycl/.nix/derivation.nix +++ b/modules/remote-sycl/.nix/derivation.nix @@ -7,7 +7,7 @@ , openmp , keldu , ocl-icd -, lld_15 +, lld_17 , python3 , bash @@ -16,7 +16,12 @@ }: let - + adaptivecpp_custom = (import ((builtins.fetchGit { + url = "git@git.keldu.de:forstio/forstio"; + ref = "dev"; + }).outPath + "/default.nix"){ + inherit stdenv; + }); in stdenv.mkDerivation { pname = "forstio-remote-sycl"; inherit version; @@ -38,7 +43,7 @@ in stdenv.mkDerivation { keldu.adaptivecpp-dev ocl-icd openmp - lld_15 + lld_17 ]; buildPhase = '' |