badgemagic-app: init at v1.18.15

This commit is contained in:
matthewcroughan
2026-01-04 17:26:43 +00:00
parent 69d335c75d
commit 27208affe7
2 changed files with 1160 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
flutter338,
fetchFromGitHub,
}:
let
version = "1.18.15";
src = fetchFromGitHub {
owner = "fossasia";
repo = "badgemagic-app";
tag = "v${version}";
hash = "sha256-zQ7ajVHueyCJP2n81dogM5YytxOoJ/hJt/qYbmw64e0=";
};
in
flutter338.buildFlutterApplication {
pname = "badgemagic-app";
inherit version src;
pubspecLock = lib.importJSON ./pubspec.lock.json;
meta = {
description = "Badge Magic with LEDs - mobile and desktop app";
homepage = "https://github.com/fossasia/badgemagic-app";
license = with lib.licenses; [ asl20 ];
maintainers = [ lib.maintainers.matthewcroughan ];
platforms = [
"aarch64-linux"
"x86_64-linux"
];
mainProgram = "badgemagic";
};
}
File diff suppressed because it is too large Load Diff