Merge pull request #402 from PrivateStorageio/nix-version-check

Add a nix version check.
This commit is contained in:
DavHau 2022-04-20 14:12:13 +02:00 committed by GitHub
commit 6aeedeffed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,8 @@
with builtins;
with pkgs.lib;
assert builtins.compareVersions builtins.nixVersion "2.3" >= 0;
let
l = import ./mach_nix/nix/lib.nix { inherit pkgs; lib = pkgs.lib; };