summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-05 20:32:54 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-13 20:18:44 +0200
commit91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8 (patch)
tree87b9ff74fa87a13246ca7a22cdee97132d1cbea8 /pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
parent9a1aa51fed2b62edcce9f1722cfc822cf07f31a8 (diff)
downloadnixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar.gz
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar.bz2
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar.lz
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar.xz
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.tar.zst
nixpkgs-91407a8bdfb2dbb95b6cc5c99a44b0925bd464f8.zip
ncurses: split into multiple outputs
Some programs (e.g. tput) might better be moved somewhere else than
$dev/bin, but that can be improved later if need be.
Diffstat (limited to 'pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix')
-rw-r--r--pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix b/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
index c91c6da28d9..cbb64bc1277 100644
--- a/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
+++ b/pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
@@ -54,8 +54,8 @@ in
   ncursesw = attrs: {
     buildInputs = [ ncurses ];
     buildFlags = [
-      "--with-cflags=-I${ncurses}/include"
-      "--with-ldflags=-L${ncurses}/lib"
+      "--with-cflags=-I${ncurses.dev}/include"
+      "--with-ldflags=-L${ncurses.lib}/lib"
     ];
   };