about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-02-10 15:19:25 +0100
committeraszlig <aszlig@nix.build>2020-02-10 15:19:25 +0100
commit1c313303fcd65bf0de295d6c44fdb927f79ac2f7 (patch)
tree3417a792717bbdf2bb9968acaeede8d25549f178 /pkgs
parent67f8c4b09e7f9a9cd82c7dd1601891654958d0d2 (diff)
pkgs/profpatsch: Fix eval error for dhall-flycheck
The haskellPackages attribute is actually part of the package scope
inside pkgs.profpatsch and thus the evaluation fails with the following
error:

  attribute 'vuizvui' missing, at .../pkgs/profpatsch/default.nix:176:20

Referencing the attribute directly from within the recursive attribute
set fixes the evaluation error and building dhall-flycheck also
succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @Profpatsch
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/profpatsch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/profpatsch/default.nix b/pkgs/profpatsch/default.nix
index 48bf3cd5..1bc29d57 100644
--- a/pkgs/profpatsch/default.nix
+++ b/pkgs/profpatsch/default.nix
@@ -173,7 +173,7 @@ in rec {
   dhall = easy-dhall-nix.dhall-simple;
   dhall-nix = easy-dhall-nix.dhall-nix-simple;
 
-  dhall-flycheck = pkgs.vuizvui.profpatsch.haskellPackages.callPackage
+  dhall-flycheck = haskellPackages.callPackage
     (import "${pkgs.fetchFromGitHub {
       owner = "Profpatsch";
       repo = "dhall-flycheck";