Merge pull request #200988 from hacker1024/patch-2

flutter: Expose internal derivation creation functions
This commit is contained in:
Thiago Kenji Okada 2023-01-08 15:17:18 +00:00 committed by GitHub
commit c1aa02a83d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,9 +24,11 @@ let
sha256 = hash; sha256 = hash;
}; };
}; };
flutter2Patches = getPatches ./patches/flutter2;
flutter3Patches = getPatches ./patches/flutter3;
in in
{ {
inherit mkFlutter; inherit mkFlutter flutterDrv flutter2Patches flutter3Patches;
stable = flutterDrv { stable = flutterDrv {
pname = "flutter"; pname = "flutter";
version = "3.3.8"; version = "3.3.8";
@ -36,7 +38,7 @@ in
x86_64-linux = "sha256-lFw+KaxzhuAMnu6ypczINqywzpiD+8Kd+C/UHJDrO9Y="; x86_64-linux = "sha256-lFw+KaxzhuAMnu6ypczINqywzpiD+8Kd+C/UHJDrO9Y=";
aarch64-linux = "sha256-snlFTY4oJ4ALGLc210USbI2Z///cx1IVYUWm7Vo5z2I="; aarch64-linux = "sha256-snlFTY4oJ4ALGLc210USbI2Z///cx1IVYUWm7Vo5z2I=";
}; };
patches = getPatches ./patches/flutter3; patches = flutter3Patches;
}; };
v2 = flutterDrv { v2 = flutterDrv {
@ -48,6 +50,6 @@ in
x86_64-linux = "sha256-egrYd7B4XhkBiHPIFE2zopxKtQ58GqlogAKA/UeiXnI="; x86_64-linux = "sha256-egrYd7B4XhkBiHPIFE2zopxKtQ58GqlogAKA/UeiXnI=";
aarch64-linux = "sha256-vmerjXkUAUnI8FjK+62qLqgETmA+BLPEZXFxwYpI+KY="; aarch64-linux = "sha256-vmerjXkUAUnI8FjK+62qLqgETmA+BLPEZXFxwYpI+KY=";
}; };
patches = getPatches ./patches/flutter2; patches = flutter2Patches;
}; };
} }