tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge #200266: firmware-updater: update hashes
Vladimír Čunát
3 years ago
e9c529c3
24cc9c3c
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
firmware
firmware-updater
default.nix
+5
-1
pkgs/os-specific/linux/firmware/firmware-updater/default.nix
···
1
1
{ lib
2
2
, flutter2
3
3
, fetchFromGitHub
4
4
+
, stdenv
4
5
}:
5
6
6
7
flutter2.mkFlutterApp {
7
8
pname = "firmware-updater";
8
9
version = "unstable";
9
10
10
10
-
vendorHash = "sha256-7uOiebGBcX61oUyNCi1h9KldTRTrCfYaHUQSH4J5OoQ=";
11
11
+
vendorHash =
12
12
+
if stdenv.system == "aarch64-linux"
13
13
+
then "sha256-+ACmcIKXtGtaYBuwc7jY9hEdIS9qxQCbuxRKJQohX5A="
14
14
+
else "sha256-nPblucEpNCBJYpIqx1My6SWq8CjXYuHDG/uphdcrWjQ=";
11
15
12
16
src = fetchFromGitHub {
13
17
owner = "canonical";