Skip to content

Commit e9c529c

Browse files
committed
Merge #200266: firmware-updater: update hashes
2 parents 24cc9c3 + f9254f4 commit e9c529c

File tree

1 file changed

+5
-1
lines changed
  • pkgs/os-specific/linux/firmware/firmware-updater

1 file changed

+5
-1
lines changed

pkgs/os-specific/linux/firmware/firmware-updater/default.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{ lib
22
, flutter2
33
, fetchFromGitHub
4+
, stdenv
45
}:
56

67
flutter2.mkFlutterApp {
78
pname = "firmware-updater";
89
version = "unstable";
910

10-
vendorHash = "sha256-7uOiebGBcX61oUyNCi1h9KldTRTrCfYaHUQSH4J5OoQ=";
11+
vendorHash =
12+
if stdenv.system == "aarch64-linux"
13+
then "sha256-+ACmcIKXtGtaYBuwc7jY9hEdIS9qxQCbuxRKJQohX5A="
14+
else "sha256-nPblucEpNCBJYpIqx1My6SWq8CjXYuHDG/uphdcrWjQ=";
1115

1216
src = fetchFromGitHub {
1317
owner = "canonical";

0 commit comments

Comments
 (0)