haskell-docs-cli icon indicating copy to clipboard operation
haskell-docs-cli copied to clipboard

any plan to add to hackage ?

Open teto opened this issue 2 years ago • 4 comments

so that nixpkgs can pick it up automatically ?

thanks for writing this cool piece of software.

teto avatar Oct 05 '21 00:10 teto

Yes! It's on my todo list. It's nice to see some demand. I might get around to it tonight.

lazamar avatar Oct 05 '21 10:10 lazamar

@teto did you get this working on NixOS? I'm having issues creating the nix script

iogrt avatar Sep 25 '22 16:09 iogrt

I'm about to try to include this in my general list of tools to use across projects.

danwdart avatar Oct 23 '22 15:10 danwdart

My nix build tools list now contains:

{
haskell-docs-cli            = (ghc.override {
      overrides = self: super: rec {
        haskell-docs-cli = self.callCabal2nix "haskell-docs-cli" (builtins.fetchGit {
          url = "https://github.com/lazamar/haskell-docs-cli.git";
          rev = "6c40bd41f0f6be5f06afae2836c42710dc05cd87";
        }) {};
      };
    }).haskell-docs-cli;
}

& this works great.

danwdart avatar Oct 23 '22 15:10 danwdart

It'd still be nice for it to go up to hackage so people won't have to add the override like I have. Are you still interested in maintaining the project, or should someone else do that piece?

danwdart avatar Nov 08 '22 15:11 danwdart

I will add it to hackage, I just haven't spared the time to do it yet. I'll have a look this weekend.

lazamar avatar Nov 16 '22 09:11 lazamar

This is now on hackage https://hackage.haskell.org/package/haskell-docs-cli and running cabal install haskell-docs-cli will make the hdc binary available.

lazamar avatar Nov 20 '22 21:11 lazamar