diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-11 18:23:43 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-11 18:23:43 +0200 |
commit | 5969e94c88f7db8cfe017190a27faf86b42b1a5f (patch) | |
tree | eb1f4f1ead45980c6fd7e5adbe800cc48755993e /modules/remote-kokkos/.nix/derivation.nix | |
parent | 188692a048b28361f91150b2e93804dfb944bf9c (diff) |
remote-kokkos: Remove kokkos for now
Diffstat (limited to 'modules/remote-kokkos/.nix/derivation.nix')
-rw-r--r-- | modules/remote-kokkos/.nix/derivation.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/remote-kokkos/.nix/derivation.nix b/modules/remote-kokkos/.nix/derivation.nix deleted file mode 100644 index dc9cd94..0000000 --- a/modules/remote-kokkos/.nix/derivation.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib -, stdenv -, scons -, clang-tools -, version -, forstio -}: - -let - -in stdenv.mkDerivation { - pname = "forstio-device-hip"; - inherit version; - src = ./..; - - enableParallelBuilding = true; - - nativeBuildInputs = [ - scons - clang-tools - ]; - - buildInputs = [ - forstio.core - forstio.async - forstio.codec - ]; - - outputs = ["out" "dev"]; -} |