A NUR repository of the tox-rs project
To install packages from this repo, add the following to configuration.nix
:
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
}
Then packages will be available as nixos.nur.repos.tox.<package name>
.
Add the following to configuration.nix
:
let
nur-no-pkgs = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {};
in
{
imports =
[
nur-no-pkgs.repos.tox.modules.tox-node
];
services.tox-node.enable = true;
}