We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
error: attribute 'version' missing
1 parent 91f1e05 commit cc6ec57Copy full SHA for cc6ec57
pkgs/os-specific/linux/systemd/default.nix
@@ -120,7 +120,12 @@
120
withLibBPF ?
121
lib.versionAtLeast buildPackages.llvmPackages.clang.version "10.0"
122
# assumes hard floats
123
- && (stdenv.hostPlatform.isAarch -> lib.versionAtLeast stdenv.hostPlatform.parsed.cpu.version "6")
+ && (
124
+ stdenv.hostPlatform.isAarch
125
+ ->
126
+ stdenv.hostPlatform.parsed.cpu ? version
127
+ && lib.versionAtLeast stdenv.hostPlatform.parsed.cpu.version "6"
128
+ )
129
# see https://github.com/NixOS/nixpkgs/pull/194149#issuecomment-1266642211
130
&& !stdenv.hostPlatform.isMips64
131
# can't find gnu/stubs-32.h
0 commit comments