Skip to content

Commit

Permalink
elm: don't import <nixpkgs>, fixes tarball job
Browse files Browse the repository at this point in the history
Don't import <nixpkgs>, because that is not allowed.
Broken by NixOS#63477

cc @turboMaCk
  • Loading branch information
FRidh committed Jun 25, 2019
1 parent 22034df commit 26335f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/compilers/elm/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv
{ lib, stdenv, pkgs
, haskell, nodejs
, fetchurl, fetchpatch, makeWrapper, writeScriptBin }:
let
Expand All @@ -8,7 +8,7 @@ let

elmNodePackages =
import ./packages/node-composition.nix {
inherit nodejs;
inherit nodejs pkgs;
inherit (stdenv.hostPlatform) system;
};

Expand Down

3 comments on commit 26335f3

@turboMaCk
Copy link

@turboMaCk turboMaCk commented on 26335f3 Jun 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @FRidh and sorry I didn't realize that this file generated by node2nix does that. I'll be more careful next time. Are you going to open PR?

@FRidh
Copy link
Author

@FRidh FRidh commented on 26335f3 Jun 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was delivered straight to master.

@turboMaCk
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool, thanks and sorry again

Please sign in to comment.