Skip to content

Commit

Permalink
Merge pull request #311815 from ExpidusOS/feat/flutter-3.22.0
Browse files Browse the repository at this point in the history
flutter: 3.19.4 -> 3.22.0
  • Loading branch information
RaghavSood authored May 19, 2024
2 parents f49aee6 + a22a985 commit 6c0b7a9
Show file tree
Hide file tree
Showing 7 changed files with 1,078 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkgs/by-name/in/intiface-central/package.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib
, fetchFromGitHub
, flutter
, flutterPackages
, corrosion
, rustPlatform
, cargo
Expand All @@ -9,7 +9,7 @@
, copyDesktopItems
, makeDesktopItem
}:
flutter.buildFlutterApplication rec {
flutterPackages.v3_19.buildFlutterApplication rec {
pname = "intiface-central";
version = "2.5.6";
src = fetchFromGitHub {
Expand Down
11 changes: 8 additions & 3 deletions pkgs/desktops/expidus/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{ callPackage }:
{ callPackage, flutterPackages }:
{
calculator = callPackage ./calculator {};
file-manager = callPackage ./file-manager {};
calculator = callPackage ./calculator {
flutter = flutterPackages.v3_19;
};

file-manager = callPackage ./file-manager {
flutter = flutterPackages.v3_19;
};
}
4 changes: 3 additions & 1 deletion pkgs/development/compilers/flutter/flutter.nix
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ let
homepage = "https://flutter.dev";
license = licenses.bsd3;
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
maintainers = with maintainers; [ babariviere ericdallo FlafyDev hacker1024 ];
maintainers = teams.flutter.members ++ (with maintainers; [
babariviere ericdallo
]);
};
};
in
Expand Down
Loading

0 comments on commit 6c0b7a9

Please sign in to comment.