nickel: nixVersions.nix_2_24 -> nixVersions.nix_2_28

1.12.2 doesn't build with nix 2.24 (with enableNixImport) because of the import
reorganization in 2.28:

> cpp/nix.hh:3:10: fatal error: nix/expr/primops.hh: No such file or directory

This is the case starting from 1.12.0 [1]:

[1]: f58ca43228
This commit is contained in:
Sergei Zimmerman 2025-08-11 15:55:11 +03:00
parent abbcbdd863
commit d400ea7c04
No known key found for this signature in database

View File

@ -39,7 +39,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
]; ];
buildInputs = lib.optionals enableNixImport [ buildInputs = lib.optionals enableNixImport [
nixVersions.nix_2_24 nixVersions.nix_2_28
boost boost
]; ];