Skip to content

Commit

Permalink
nim: build with nodejs v10
Browse files Browse the repository at this point in the history
As in 8fcbbc9 we build `nim` with
NodeJS v10 to avoid eval errors since nodejs v11 got removed as it's
been EOLed by upstream.
  • Loading branch information
Ma27 committed Oct 4, 2019
1 parent 973530c commit c2fd152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 {
Expand Down Expand Up @@ -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 = [
Expand Down

0 comments on commit c2fd152

Please sign in to comment.