summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/cling/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/interpreters/cling/default.nix')
-rw-r--r--pkgs/development/interpreters/cling/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/cling/default.nix b/pkgs/development/interpreters/cling/default.nix
index c22ad3f4cb0f..8f80d2f4ee68 100644
--- a/pkgs/development/interpreters/cling/default.nix
+++ b/pkgs/development/interpreters/cling/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
, python
, libffi
, git
@@ -50,7 +50,7 @@ let
"-DCLING_INCLUDE_TESTS=ON"
];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "The Interactive C++ Interpreter";
homepage = "https://root.cern/cling/";
license = with licenses; [ lgpl21 ncsa ];
@@ -73,7 +73,7 @@ let
flags = [
"-nostdinc"
"-nostdinc++"
- "-isystem" "${stdenv.lib.getDev stdenv.cc.libc}/include"
+ "-isystem" "${lib.getDev stdenv.cc.libc}/include"
"-I" "${unwrapped}/include"
"-I" "${unwrapped}/lib/clang/5.0.2/include"
];