Skip to content

Commit

Permalink
firmware-updater: update hashes
Browse files Browse the repository at this point in the history
Was able to build this package after updating hashes.
Hydra failures don't mention hash mismatch, but maybe update will still help.

ZHF: NixOS#199919
  • Loading branch information
divanorama authored and rtimush committed Sep 21, 2023
1 parent d71a163 commit 26f3954
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/os-specific/linux/firmware/firmware-updater/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{ lib
, flutter2
, fetchFromGitHub
, stdenv
}:

flutter2.mkFlutterApp {
pname = "firmware-updater";
version = "unstable";

vendorHash = "sha256-7uOiebGBcX61oUyNCi1h9KldTRTrCfYaHUQSH4J5OoQ=";
vendorHash =
if stdenv.system == "aarch64-linux"
then "sha256-2eleXBlg2jxDDBF5rInyqZa3n14X6UdQn6ND7FTieVA="
else "sha256-nPblucEpNCBJYpIqx1My6SWq8CjXYuHDG/uphdcrWjQ=";

src = fetchFromGitHub {
owner = "canonical";
Expand Down

0 comments on commit 26f3954

Please sign in to comment.