minimal working state
This commit is contained in:
parent
855430ef16
commit
6c1a0a5d33
26 changed files with 331 additions and 326 deletions
|
|
@ -14,9 +14,12 @@
|
|||
minVersion = "23.05pre-git";
|
||||
|
||||
isNixpkgsValidVersion = let
|
||||
revInfo = lib.optional (inputs.nixpkgs?rev) " (nixpkgs-lib.rev: ${inputs.nixpkgs.rev})";
|
||||
revInfo =
|
||||
if inputs.nixpkgs?rev
|
||||
then " (nixpkgs-lib.rev: ${inputs.nixpkgs.rev})"
|
||||
else "";
|
||||
in
|
||||
(builtins.compareVersions lib.version minVersion < 0)
|
||||
(builtins.compareVersions lib.version minVersion >= 0)
|
||||
|| abort ''
|
||||
The nixpkgs dependency of snow was overridden but is too old.
|
||||
The minimum supported version of nixpkgs-lib is ${minVersion},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue