summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPatrick Callahan <patrick.callahan@sigfig.com>2017-09-13 12:06:16 -0700
committerPatrick Callahan <patrick.callahan@sigfig.com>2017-09-15 09:51:37 -0700
commit8119e48c2d90bb8252004389676d18501f0af4b7 (patch)
tree968573ec3d33bccf656483e80647c8dbe283772e /pkgs/development
parent12aa8b2f2b1452875033ea7ca90226ad1929e26e (diff)
downloadnixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar.gz
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar.bz2
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar.lz
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar.xz
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.tar.zst
nixlib-8119e48c2d90bb8252004389676d18501f0af4b7.zip
haskellPackages.tldr: fix build and add to top-level packages
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index c87e2e5cfe74..85a5f961485c 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -404,6 +404,12 @@ self: super: {
   th-printf = dontCheck super.th-printf;
   thumbnail-plus = dontCheck super.thumbnail-plus;
   tickle = dontCheck super.tickle;
+  tldr = super.tldr.override {
+    # shell-conduit determines what commands are available at compile-time, so
+    # that tldr will not compile unless the shell-conduit it uses is compiled
+    # with git in its environment.
+    shell-conduit = addBuildTool self.shell-conduit pkgs.git;
+  };
   tpdb = dontCheck super.tpdb;
   translatable-intset = dontCheck super.translatable-intset;
   ua-parser = dontCheck super.ua-parser;