summaryrefslogtreecommitdiff
path: root/modules/thread/.nix/derivation.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/thread/.nix/derivation.nix')
-rw-r--r--modules/thread/.nix/derivation.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/modules/thread/.nix/derivation.nix b/modules/thread/.nix/derivation.nix
deleted file mode 100644
index 9175d6a..0000000
--- a/modules/thread/.nix/derivation.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ lib
-, stdenv
-, scons
-, clang-tools
-, version
-, forstio
-, build_examples ? "false"
-}:
-
-stdenv.mkDerivation {
- pname = "forstio-thread";
- inherit version;
- src = ./..;
-
- enableParallelBuilding = true;
-
- nativeBuildInputs = [
- scons
- clang-tools
- ];
-
- buildInputs = [
- forstio.core
- forstio.async
- forstio.io
- forstio.codec
- forstio.io_codec
- ];
-
- outputs = [
- "out"
- "dev"
- ];
-
- buildPhase = ''
- scons build_examples=${build_examples}
- '';
-
- installPhase = ''
- scons prefix=$out build_examples=${build_examples} install
- '';
-}