summaryrefslogtreecommitdiff
path: root/c++/core
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-10-24 14:23:28 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-10-24 14:23:28 +0200
commit5212ea31af9b1f34a1f7400166563b945f94bc5c (patch)
treec09e97b93fbf42a4a6b8db040a07bb46919abd33 /c++/core
parent3788ee1d2daf257cf132803851f30ba06e71d8da (diff)
nix: Changing whole nix build setup to use stdenv
Diffstat (limited to 'c++/core')
-rw-r--r--c++/core/.nix/derivation.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/c++/core/.nix/derivation.nix b/c++/core/.nix/derivation.nix
index 26acd3d..1618651 100644
--- a/c++/core/.nix/derivation.nix
+++ b/c++/core/.nix/derivation.nix
@@ -1,12 +1,11 @@
{ lib
-, stdenvNoCC
+, stdenv
, scons
-, clang
, clang-tools
, version
}:
-stdenvNoCC.mkDerivation {
+stdenv.mkDerivation {
pname = "forstio-core";
inherit version;
src = ./..;
@@ -15,7 +14,6 @@ stdenvNoCC.mkDerivation {
nativeBuildInputs = [
scons
- clang
clang-tools
];