summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-10-04 21:05:03 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-10-04 21:06:41 +0200
commitc2fd152c98dc618c9c06b1551faee17e79a03b7f (patch)
treed4314c0575a9f3afa16a8ae8c4f5a16d5de2dffc /pkgs
parent973530c8b6ddf0e5ed96bf37a62ac38126e83176 (diff)
nim: build with nodejs v10
As in 8fcbbc94ef2cf943622e8f15168ffeaafecfecea we build `nim` with
NodeJS v10 to avoid eval errors since nodejs v11 got removed as it's
been EOLed by upstream.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/nim/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index 4228c368e566e..b802f9475dbbb 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -1,6 +1,6 @@
 # based on https://github.com/nim-lang/Nim/blob/v0.18.0/.travis.yml
 
-{ stdenv, lib, fetchurl, makeWrapper, nodejs-slim-11_x, openssl, pcre, readline,
+{ stdenv, lib, fetchurl, makeWrapper, nodejs-slim, openssl, pcre, readline,
   boehmgc, sfml, tzdata, coreutils, sqlite }:
 
 stdenv.mkDerivation rec {
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
   #    as part of building it, so it cannot be read-only
 
   checkInputs = [
-    nodejs-slim-11_x tzdata coreutils
+    nodejs-slim tzdata coreutils
   ];
 
   nativeBuildInputs = [