diff options
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 = '' |