Merge pull request 'Fixup readme and version to say what this is' (#6) from jade/fixup-readme-and-version into main

Reviewed-on: #6
This commit is contained in:
jade 2024-06-12 21:06:56 +00:00
commit ee79f8a236
4 changed files with 10 additions and 8 deletions

View file

@ -1 +0,0 @@
unstable

View file

@ -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

View file

@ -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

View file

@ -17,7 +17,6 @@
let let
inherit (inputs.nixpkgs) lib; inherit (inputs.nixpkgs) lib;
inherit (inputs) self; inherit (inputs) self;
nixVersion = lib.fileContents ./.nix-version;
in in
flake-parts.lib.mkFlake { inherit inputs; } flake-parts.lib.mkFlake { inherit inputs; }
{ {