diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-12 21:45:11 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-12 21:45:11 +0200 |
commit | 20d1fd2f6ecd610b5c466b8f09dae14d6fe8fb7f (patch) | |
tree | d51ca005722f664a92f95a63cda9c71b2bf678d7 /src | |
parent | 6419fb602593e220ed83a3b90a60ad22a72ca24d (diff) |
Added nix dirs to io_codec
Diffstat (limited to 'src')
-rw-r--r-- | src/io_codec/.nix/derivation.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/io_codec/.nix/derivation.nix b/src/io_codec/.nix/derivation.nix new file mode 100644 index 0000000..2ea0913 --- /dev/null +++ b/src/io_codec/.nix/derivation.nix @@ -0,0 +1,33 @@ +{ lib +, stdenvNoCC +, scons +, clang +, clang-tools +, version +, forstio +}: + +let + +in stdenvNoCC.mkDerivation { + pname = "forstio-io_codec"; + inherit version; + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.io + forstio.codec + ]; + + outputs = ["out" "dev"]; +} |