forked from lix-project/nix-eval-jobs
Merge pull request 'Fixup readme and version to say what this is' (#6) from jade/fixup-readme-and-version into main
Reviewed-on: lix-project/nix-eval-jobs#6
This commit is contained in:
commit
ee79f8a236
|
@ -1 +0,0 @@
|
||||||
unstable
|
|
14
README.md
14
README.md
|
@ -1,5 +1,8 @@
|
||||||
# nix-eval-jobs
|
# nix-eval-jobs
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> This is a fork of nix-eval-jobs that works with Lix.
|
||||||
|
|
||||||
This project evaluates nix attribute sets in parallel with streamable json
|
This project evaluates nix attribute sets in parallel with streamable json
|
||||||
output. This is useful for time and memory intensive evaluations such as NixOS
|
output. This is useful for time and memory intensive evaluations such as NixOS
|
||||||
machines, i.e. in a CI context. The evaluation is done with a controllable
|
machines, i.e. in a CI context. The evaluation is done with a controllable
|
||||||
|
@ -89,11 +92,12 @@ we collect example ci configuration for various CIs.
|
||||||
|
|
||||||
## Organisation of this repository
|
## Organisation of this repository
|
||||||
|
|
||||||
On the `main` branch we target nixUnstable. When a release of nix happens, we
|
`main` follows Lix HEAD, and is updated alongside the Lix NixOS module. When we
|
||||||
fork for a release branch i.e. `release-2.8` and change the nix version in
|
release we will make a `release-2.90` etc branch, which receives backports.
|
||||||
`.nix-version`. Changes and improvements made in `main` also may be backported
|
|
||||||
to these release branches. At the time of writing we only intent to support the
|
The version of nix-eval-jobs follows the major version of Lix and minor
|
||||||
latest release branch.
|
versions of nix-eval-jobs are released as necessary when changes are made in
|
||||||
|
n-e-j itself.
|
||||||
|
|
||||||
## Projects using nix-eval-jobs
|
## Projects using nix-eval-jobs
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "nix-eval-jobs";
|
pname = "nix-eval-jobs";
|
||||||
version = "2.19.0";
|
version = "2.90.0-unstable";
|
||||||
src = if srcDir == null then filterMesonBuild ./. else srcDir;
|
src = if srcDir == null then filterMesonBuild ./. else srcDir;
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
nlohmann_json
|
nlohmann_json
|
||||||
|
|
Loading…
Reference in a new issue