summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-02 23:19:22 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-04 14:49:52 -0500
commitec2f121bed216c089a066a1fe076d74256b55a49 (patch)
tree3be453d6166330d11ea7798bb0d9451f31b8e795
parentdea9fceb0b05aae8729a32a947d38cfa49caac89 (diff)
downloadnixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar.gz
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar.bz2
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar.lz
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar.xz
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.tar.zst
nixlib-ec2f121bed216c089a066a1fe076d74256b55a49.zip
ghcWithPackages: Fix comment URL
-rw-r--r--pkgs/development/haskell-modules/with-packages-wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index 09b6683e26ae..3e8fad712bff 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -44,7 +44,7 @@ let
   paths         = lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages);
   hasLibraries  = lib.any (x: x.isHaskellLibrary) paths;
   # CLang is needed on Darwin for -fllvm to work:
-  # https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/code-generators.html
+  # https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/codegens.html#llvm-code-generator-fllvm
   llvm          = lib.makeBinPath
                   ([ llvmPackages.llvm ]
                    ++ lib.optional targetPlatform.isDarwin llvmPackages.clang);