summaryrefslogtreecommitdiff
path: root/modules/remote-opencl/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-05-13 09:57:49 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-05-13 09:57:49 +0200
commit6b9e221a0c439ce3ee9b728bc9ead8f5c2c82ceb (patch)
tree49d70b45f0aa65e8e872ff76deccebd6c1f92198 /modules/remote-opencl/.nix
parent0f8abfb2d48497e804d87e6e47a41c70e728901a (diff)
renamed to sycl since opencl does not support c++
Diffstat (limited to 'modules/remote-opencl/.nix')
-rw-r--r--modules/remote-opencl/.nix/derivation.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/remote-opencl/.nix/derivation.nix b/modules/remote-opencl/.nix/derivation.nix
deleted file mode 100644
index 2d095df..0000000
--- a/modules/remote-opencl/.nix/derivation.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib
-, stdenv
-, scons
-, clang-tools
-, version
-, forstio
-, opencl-clhpp
-}:
-
-let
-
-in stdenv.mkDerivation {
- pname = "forstio-device-opencl";
- inherit version;
- src = ./..;
-
- enableParallelBuilding = true;
-
- nativeBuildInputs = [
- scons
- clang-tools
- ];
-
- buildInputs = [
- forstio.core
- forstio.codec
- forstio.async
- forstio.io
- forstio.io_codec
- opencl-clhpp
- ];
-
- outputs = ["out" "dev"];
-}