about summary refs log tree commit diff
path: root/pkgs/development/compilers/nim
diff options
context:
space:
mode:
authorroyneary <christian@ulrich.earth>2018-10-31 10:37:38 +0100
committerroyneary <christian@ulrich.earth>2018-10-31 10:37:38 +0100
commitb786a47e9ebd8018079b094bdec4abbc7b785076 (patch)
tree93474487658c850414b6e5a9176dd6de053d7bc8 /pkgs/development/compilers/nim
parent651c1784a943488b16dad56af7a382091f2e45e8 (diff)
downloadnixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar.gz
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar.bz2
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar.lz
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar.xz
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.tar.zst
nixlib-b786a47e9ebd8018079b094bdec4abbc7b785076.zip
nim: move build time dependencies into nativeBuildInputs
Diffstat (limited to 'pkgs/development/compilers/nim')
-rw-r--r--pkgs/development/compilers/nim/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index 3596c17b4071..3f067553297e 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -27,8 +27,11 @@ stdenv.mkDerivation rec {
   #    used for bootstrapping, but koch insists on moving the nim compiler around
   #    as part of building it, so it cannot be read-only
 
-  buildInputs = [
+  nativeBuildInputs = [
     makeWrapper nodejs-slim-8_x tzdata coreutils
+  ];
+
+  buildInputs = [
     openssl pcre readline boehmgc sfml
   ];