summaryrefslogtreecommitdiff
path: root/modules/device-hip/.nix/derivation.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/device-hip/.nix/derivation.nix')
-rw-r--r--modules/device-hip/.nix/derivation.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/device-hip/.nix/derivation.nix b/modules/device-hip/.nix/derivation.nix
deleted file mode 100644
index dc9cd94..0000000
--- a/modules/device-hip/.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"];
-}