flutter: Expose internal derivation creation functions

This commit is contained in:
hacker1024 2022-11-13 15:25:35 +11:00 committed by GitHub
parent ffa364d8ab
commit 6a376d9a78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,9 +24,11 @@ let
sha256 = hash;
};
};
flutter2Patches = getPatches ./patches/flutter2;
flutter3Patches = getPatches ./patches/flutter3;
in
{
inherit mkFlutter;
inherit mkFlutter flutterDrv flutter2Patches flutter3Patches;
stable = flutterDrv {
pname = "flutter";
version = "3.3.3";
@ -36,7 +38,7 @@ in
x86_64-linux = "sha256-C3+YjecXLvSmJrLwi9H7TgD9Np0AArRWx3EdBrfQpTU";
aarch64-linux = "sha256-zyIK1i5/9P2C+sjzdArhFwpVO4P+It+/X50l+n9gekI=";
};
patches = getPatches ./patches/flutter3;
patches = flutter3Patches;
};
v2 = flutterDrv {
@ -48,6 +50,6 @@ in
x86_64-linux = "sha256-egrYd7B4XhkBiHPIFE2zopxKtQ58GqlogAKA/UeiXnI=";
aarch64-linux = "sha256-vmerjXkUAUnI8FjK+62qLqgETmA+BLPEZXFxwYpI+KY=";
};
patches = getPatches ./patches/flutter2;
patches = flutter2Patches;
};
}