summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-01-23 11:35:59 -0500
committerShea Levy <shea@shealevy.com>2017-01-23 11:35:59 -0500
commit21541082700a27f22dbc094a785bdba098f77e56 (patch)
treeb80f5be95f24256261ed26c3a8a443975ee754bd /pkgs/development/haskell-modules
parent8156293bacd5dab009ebb9e36a6d023825aa2431 (diff)
downloadnixlib-21541082700a27f22dbc094a785bdba098f77e56.tar
nixlib-21541082700a27f22dbc094a785bdba098f77e56.tar.gz
nixlib-21541082700a27f22dbc094a785bdba098f77e56.tar.bz2
nixlib-21541082700a27f22dbc094a785bdba098f77e56.tar.lz
nixlib-21541082700a27f22dbc094a785bdba098f77e56.tar.xz
nixlib-21541082700a27f22dbc094a785bdba098f77e56.tar.zst
nixlib-21541082700a27f22dbc094a785bdba098f77e56.zip
haskell-modules/generic-builder: Fix copy-paste error
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/generic-builder.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 43676f1e72e2..7a421e4f7b68 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