hoon-language-server icon indicating copy to clipboard operation
hoon-language-server copied to clipboard

Proposal: submit package to be part of nixpkgs

Open idrisr opened this issue 2 years ago • 1 comments

It would more convenient if this package was part of nixpkgs. Is there any reason not to submit a PR to nixpkgs so that this package is part of the nixpkgs package set?

idrisr avatar Jul 17 '23 13:07 idrisr

FWIW this works. I put it in an overlay in my home-manager config:

  hoonLanguageServer = let hoonLsp = pkgs.fetchFromGitHub {
      # use bct's fork until https://github.com/urbit/hoon-language-server/pull/31 is merged
      owner  = "bct";
      repo   = "hoon-language-server";
      rev    = "89b2328796d6e1df41ec06534fd4f5b43af7c5a5";
      sha256 = "sha256-RN3dxJhFZeryNtEG9ZUOHziuYffHhUq+x2y+4lHsaYk=";
    };
  in
    pkgs.callPackage "${hoonLsp}/default.nix" {};

bct avatar Sep 22 '23 15:09 bct