Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add to Nixpkgs #2

Closed
samuela opened this issue May 21, 2020 · 3 comments · Fixed by NixOS/nixpkgs#150431
Closed

Add to Nixpkgs #2

samuela opened this issue May 21, 2020 · 3 comments · Fixed by NixOS/nixpkgs#150431

Comments

@samuela
Copy link

samuela commented May 21, 2020

Is there any way we could get this added to Nixpkgs? Doing so would greatly simplify the installation/setup/upgrade process.

@Xe
Copy link

Xe commented Jun 1, 2020

I added comma to my NUR repo nur.repos.xe. You can install it by adding it to your configuration.nix with:

{
  nixpkgs.config.packageOverrides = pkgs: {
    nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
      inherit pkgs;
    };
  };

  environment.systemPackages = [ pkgs.nur.repos.xe.comma ];
}

Or in a user account by adding this to your ~/.config/nixpkgs/config.nix:

{
  packageOverrides = pkgs: {
    nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
      inherit pkgs;
    };
  };
}

And then running nix-env -iA nixpkgs.nur.repos.xe.comma. Either way should let you install/update this software without much issue.

@fzakaria
Copy link
Contributor

This tool is great.
Yea why isn't it on nixpkgs ?

@workflow
Copy link

Looks like this can be closed :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants