lol

fwupd: 2.0.6 -> 2.0.7 (#393130)

authored by

Florian Klink and committed by
GitHub
9a8852d2 43b32614

+2 -23
+2 -23
pkgs/by-name/fw/fwupd/package.nix
··· 84 84 let 85 85 isx86 = stdenv.hostPlatform.isx86; 86 86 87 - # Dell isn't supported on Aarch64 88 - haveDell = isx86; 89 - 90 - # only redfish for x86_64 91 - haveRedfish = stdenv.hostPlatform.isx86_64; 92 - 93 - # only use msr if x86 (requires cpuid) 94 - haveMSR = isx86; 95 - 96 - # # Currently broken on Aarch64 97 - # haveFlashrom = isx86; 98 87 # Experimental 99 88 haveFlashrom = isx86 && enableFlashrom; 100 89 ··· 141 130 in 142 131 stdenv.mkDerivation (finalAttrs: { 143 132 pname = "fwupd"; 144 - version = "2.0.6"; 133 + version = "2.0.7"; 145 134 146 135 # libfwupd goes to lib 147 136 # daemon, plug-ins and libfwupdplugin go to out ··· 159 148 owner = "fwupd"; 160 149 repo = "fwupd"; 161 150 tag = finalAttrs.version; 162 - hash = "sha256-//y2kkCrj6E3kKxZIEK2bBUiZezB9j4xzR6WrBdcpqQ="; 151 + hash = "sha256-Rus/GaLdoxC1vZskcZeKYE26ys7iBq6szgl2dh1UPsM="; 163 152 }; 164 153 165 154 patches = [ ··· 262 251 (lib.mesonEnable "docs" true) 263 252 # We are building the official releases. 264 253 (lib.mesonEnable "supported_build" true) 265 - (lib.mesonEnable "launchd" false) 266 254 (lib.mesonOption "systemd_root_prefix" "${placeholder "out"}") 267 255 (lib.mesonOption "installed_test_prefix" "${placeholder "installedTests"}") 268 256 "--localstatedir=/var" ··· 281 269 ++ lib.optionals (!enablePassim) [ 282 270 (lib.mesonEnable "passim" false) 283 271 ] 284 - ++ lib.optionals (!haveDell) [ 285 - (lib.mesonEnable "plugin_synaptics_mst" false) 286 - ] 287 - ++ lib.optionals (!haveRedfish) [ 288 - (lib.mesonEnable "plugin_redfish" false) 289 - ] 290 272 ++ lib.optionals (!haveFlashrom) [ 291 273 (lib.mesonEnable "plugin_flashrom" false) 292 - ] 293 - ++ lib.optionals (!haveMSR) [ 294 - (lib.mesonEnable "plugin_msr" false) 295 274 ]; 296 275 297 276 # TODO: wrapGAppsHook3 wraps efi capsule even though it is not ELF