From 21541082700a27f22dbc094a785bdba098f77e56 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 23 Jan 2017 11:35:59 -0500 Subject: [PATCH] haskell-modules/generic-builder: Fix copy-paste error --- pkgs/development/haskell-modules/generic-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix index 43676f1e72e..7a421e4f7b6 100644 --- a/pkgs/development/haskell-modules/generic-builder.nix +++ b/pkgs/development/haskell-modules/generic-builder.nix @@ -151,7 +151,7 @@ let ghcCommand' = if isGhcjs then "ghcjs" else "ghc"; crossPrefix = if (ghc.cross or null) != null then "${ghc.cross.config}-" else ""; ghcCommand = "${crossPrefix}${ghcCommand'}"; - ghcCommandCaps= lib.toUpper ghcCommand'; + ghcCommandCaps= toUpper ghcCommand'; in