forked from mirrors/nixpkgs
haskellPackages.tldr: fix build and add to top-level packages
This commit is contained in:
parent
12aa8b2f2b
commit
8119e48c2d
|
@ -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;
|
||||
|
|
|
@ -4566,6 +4566,8 @@ with pkgs;
|
|||
|
||||
tldr = callPackage ../tools/misc/tldr { };
|
||||
|
||||
tldr-hs = haskellPackages.tldr;
|
||||
|
||||
tlspool = callPackage ../tools/networking/tlspool { };
|
||||
|
||||
tmate = callPackage ../tools/misc/tmate { };
|
||||
|
|
Loading…
Reference in a new issue