elm: don't import <nixpkgs>, fixes tarball job

Don't import <nixpkgs>, because that is not allowed.
Broken by https://github.com/NixOS/nixpkgs/pull/63477

cc @turboMaCk
This commit is contained in:
Frederik Rietdijk 2019-06-25 16:13:08 +02:00
parent 22034df601
commit 26335f358e

View File

@ -1,4 +1,4 @@
{ lib, stdenv
{ lib, stdenv, pkgs
, haskell, nodejs
, fetchurl, fetchpatch, makeWrapper, writeScriptBin }:
let
@ -8,7 +8,7 @@ let
elmNodePackages =
import ./packages/node-composition.nix {
inherit nodejs;
inherit nodejs pkgs;
inherit (stdenv.hostPlatform) system;
};