README: mention new maintainer request in the README

This commit is contained in:
Jörg Thalheim 2024-08-25 11:35:52 +02:00
parent 9db2d3e132
commit 3ec4afdaaf

View file

@ -2,6 +2,11 @@
# NUR
## IMPORTANT: Looking for new maintainer!!!
https://github.com/nix-community/NUR/issues/755
The Nix User Repository (NUR) is a community-driven meta repository for Nix packages.
It provides access to user repositories that contain package descriptions (Nix
expressions) and allows you to install packages by referencing them via attributes.
@ -480,16 +485,16 @@ The repo must be a valid package repo, i.e. its root contains a `default.nix` fi
You can override repositories in two ways:
- With packageOverrides
- With packageOverrides
```nix
{
inputs.nur.url = "github:nix-community/NUR";
inputs.paul.url = "path:/some_path/nur-paul"; # example: a local nur.repos.paul for development
inputs.paul.url = "path:/some_path/nur-paul"; # example: a local nur.repos.paul for development
outputs = {self, nixpkgs, nur, paul }: {
system = "x86_64-linux";
nurpkgs = import nixpkgs { inherit system; };
...
@ -520,13 +525,13 @@ You can override repositories in two ways:
};
})
];
}
}
...
];
}
```
The **repo must contains** a `flake.nix` file to addition of `default.nix`: [flake.nix example](https://github.com/Mic92/nur-packages/blob/master/flake.nix)
The **repo must contains** a `flake.nix` file to addition of `default.nix`: [flake.nix example](https://github.com/Mic92/nur-packages/blob/master/flake.nix)
- If you need to use NUR defined modules and to avoid infinite recursion complete `nur-no-pkgs` (from previous Flake Support section) as:
```nix