From d8fe9dc48b640fc977cd03b483e6fd6b620785ad Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Thu, 15 Aug 2024 14:21:43 +0200 Subject: removing stale files --- modules/thread/.nix/derivation.nix | 42 -------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 modules/thread/.nix/derivation.nix (limited to 'modules/thread/.nix/derivation.nix') 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 - ''; -} -- cgit v1.2.3