summaryrefslogtreecommitdiff
path: root/c++/window-opengl
diff options
context:
space:
mode:
Diffstat (limited to 'c++/window-opengl')
-rw-r--r--c++/window-opengl/.nix/derivation.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/c++/window-opengl/.nix/derivation.nix b/c++/window-opengl/.nix/derivation.nix
index 95ef1e8..40c25bb 100644
--- a/c++/window-opengl/.nix/derivation.nix
+++ b/c++/window-opengl/.nix/derivation.nix
@@ -1,7 +1,6 @@
{ lib
-, stdenvNoCC
+, stdenv
, scons
-, clang
, clang-tools
, version
, forstio
@@ -11,7 +10,7 @@
let
-in stdenvNoCC.mkDerivation {
+in stdenv.mkDerivation {
pname = "forstio-window-opengl";
inherit version;
src = ./..;
@@ -20,7 +19,6 @@ in stdenvNoCC.mkDerivation {
nativeBuildInputs = [
scons
- clang
clang-tools
];