summaryrefslogtreecommitdiff
path: root/modules/async/.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/async/.nix')
-rw-r--r--modules/async/.nix/derivation.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/async/.nix/derivation.nix b/modules/async/.nix/derivation.nix
new file mode 100644
index 0000000..aad258f
--- /dev/null
+++ b/modules/async/.nix/derivation.nix
@@ -0,0 +1,28 @@
+{ lib
+, stdenv
+, scons
+, clang-tools
+, version
+, forstio
+}:
+
+let
+
+in stdenv.mkDerivation {
+ pname = "forstio-async";
+ inherit version;
+ src = ./..;
+
+ enableParallelBuilding = true;
+
+ nativeBuildInputs = [
+ scons
+ clang-tools
+ ];
+
+ buildInputs = [
+ forstio.core
+ ];
+
+ outputs = ["out" "dev"];
+}