summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-18 22:27:05 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:53 -0400
commit9f2e05662bf7a33c394fa7d707905154d20a0db2 (patch)
treed357340143c1fd401626d79d1f477ecdf97e37a7 /pkgs/development
parent1e73b71e0309a033c373b322cc23b5776d76f7eb (diff)
downloadnixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar.gz
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar.bz2
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar.lz
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar.xz
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.tar.zst
nixlib-9f2e05662bf7a33c394fa7d707905154d20a0db2.zip
treewide: Manually fix miscategorized `autoreconfHook` `buildInputs`
These are the ones with odd indentation my script will mess up on.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/ruby/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix
index b4cd9f3f4180..5cb019891ff8 100644
--- a/pkgs/development/interpreters/ruby/default.nix
+++ b/pkgs/development/interpreters/ruby/default.nix
@@ -66,8 +66,9 @@ let
         # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
         NROFF = "${groff}/bin/nroff";
 
-        buildInputs = ops useRailsExpress [ autoreconfHook bison ]
-          ++ (op fiddleSupport libffi)
+        nativeBuildInputs = ops useRailsExpress [ autoreconfHook bison ];
+        buildInputs =
+             (op fiddleSupport libffi)
           ++ (ops cursesSupport [ ncurses readline ])
           ++ (op docSupport groff)
           ++ (op zlibSupport zlib)