1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-11 21:17:45 +03:00

Merge pull request #625 from samueldr-wip/fix/bootspec-kernel-ref

Fix eval with bootspec enabled
This commit is contained in:
Samuel Dionne-Riel 2023-05-06 17:12:16 -04:00 committed by GitHub
commit df10fe3c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -204,6 +204,7 @@ in
baseVersion = "3.18";
kernelOlder = lib.versionOlder baseVersion;
kernelAtLeast = lib.versionAtLeast baseVersion;
modDirVersion = "99";
};
version = "99";
} "mkdir $out; touch $out/no-kernel"

View File

@ -549,7 +549,7 @@ stdenv.mkDerivation (inputArgs // {
# appropriately for different quirks.
inherit isQcdt isExynosDT;
inherit baseVersion;
inherit baseVersion modDirVersion;
kernelOlder = lib.versionOlder baseVersion;
kernelAtLeast = lib.versionAtLeast baseVersion;