Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
852 B
Nix
35 lines
852 B
Nix
{
|
|
lib,
|
|
flutter335,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
flutter335.buildFlutterApplication rec {
|
|
pname = "firmware-updater";
|
|
version = "0-unstable-2025-09-09";
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
sourceRoot = "${src.name}/apps/firmware_updater";
|
|
|
|
gitHashes = {
|
|
fwupd = "sha256-l/+HrrJk1mE2Mrau+NmoQ7bu9qhHU6wX68+m++9Hjd4=";
|
|
};
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "firmware-updater";
|
|
rev = "402e97254b9d63c8d962c46724995e377ff922c8";
|
|
hash = "sha256-nQn5mlgNj157h++67+mhez/F1ALz4yY+bxiGsi0/xX8=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Firmware Updater for Linux";
|
|
mainProgram = "firmware-updater";
|
|
homepage = "https://github.com/canonical/firmware-updater";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|