diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-11-20 16:53:23 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-11-20 16:54:43 +0100 |
commit | 24b9968dfd214c67b44c6251e8a726852c17e908 (patch) | |
tree | a20a6deeb701a47aea6041ba0ee38d0144b78482 /c++/device-hip/.nix | |
parent | 9155deb31b4ff2150333a13d4f15ae7bdef1af5c (diff) |
device-hip: adding base for device rpc
Diffstat (limited to 'c++/device-hip/.nix')
-rw-r--r-- | c++/device-hip/.nix/derivation.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/c++/device-hip/.nix/derivation.nix b/c++/device-hip/.nix/derivation.nix new file mode 100644 index 0000000..6849e6e --- /dev/null +++ b/c++/device-hip/.nix/derivation.nix @@ -0,0 +1,30 @@ +{ lib +, stdenv +, scons +, clang-tools +, version +, forstio +}: + +let + +in stdenv.mkDerivation { + pname = "forstio-io_codec"; + inherit version; + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + ]; + + outputs = ["out" "dev"]; +} |