From b786a47e9ebd8018079b094bdec4abbc7b785076 Mon Sep 17 00:00:00 2001 From: royneary Date: Wed, 31 Oct 2018 10:37:38 +0100 Subject: [PATCH] nim: move build time dependencies into nativeBuildInputs --- pkgs/development/compilers/nim/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 ];