mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
flutter.buildFlutterApplication: Allow building for the Web
This commit is contained in:
parent
b43ee05f4e
commit
f51a0b053d
3 changed files with 151 additions and 127 deletions
|
@ -103,6 +103,9 @@ flutter.buildFlutterApplication {
|
||||||
pname = "firmware-updater";
|
pname = "firmware-updater";
|
||||||
version = "unstable-2023-04-30";
|
version = "unstable-2023-04-30";
|
||||||
|
|
||||||
|
# To build for the Web, use the flutterHostPlatform argument.
|
||||||
|
# flutterHostPlatform = "web";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "canonical";
|
owner = "canonical";
|
||||||
repo = "firmware-updater";
|
repo = "firmware-updater";
|
||||||
|
|
|
@ -17,134 +17,160 @@
|
||||||
|
|
||||||
{ pubGetScript ? "flutter pub get"
|
{ pubGetScript ? "flutter pub get"
|
||||||
, flutterBuildFlags ? [ ]
|
, flutterBuildFlags ? [ ]
|
||||||
|
, flutterHostPlatform ? "linux"
|
||||||
, extraWrapProgramArgs ? ""
|
, extraWrapProgramArgs ? ""
|
||||||
, ...
|
, ...
|
||||||
}@args:
|
}@args:
|
||||||
|
|
||||||
(buildDartApplication.override {
|
let
|
||||||
dart = flutter;
|
hostPlatforms = rec {
|
||||||
}) (args // {
|
universal = args // {
|
||||||
sdkSetupScript = ''
|
sdkSetupScript = ''
|
||||||
# Pub needs SSL certificates. Dart normally looks in a hardcoded path.
|
# Pub needs SSL certificates. Dart normally looks in a hardcoded path.
|
||||||
# https://github.com/dart-lang/sdk/blob/3.1.0/runtime/bin/security_context_linux.cc#L48
|
# https://github.com/dart-lang/sdk/blob/3.1.0/runtime/bin/security_context_linux.cc#L48
|
||||||
#
|
#
|
||||||
# Dart does not respect SSL_CERT_FILE...
|
# Dart does not respect SSL_CERT_FILE...
|
||||||
# https://github.com/dart-lang/sdk/issues/48506
|
# https://github.com/dart-lang/sdk/issues/48506
|
||||||
# ...and Flutter does not support --root-certs-file, so the path cannot be manually set.
|
# ...and Flutter does not support --root-certs-file, so the path cannot be manually set.
|
||||||
# https://github.com/flutter/flutter/issues/56607
|
# https://github.com/flutter/flutter/issues/56607
|
||||||
# https://github.com/flutter/flutter/issues/113594
|
# https://github.com/flutter/flutter/issues/113594
|
||||||
#
|
#
|
||||||
# libredirect is of no use either, as Flutter does not pass any
|
# libredirect is of no use either, as Flutter does not pass any
|
||||||
# environment variables (including LD_PRELOAD) to the Pub process.
|
# environment variables (including LD_PRELOAD) to the Pub process.
|
||||||
#
|
#
|
||||||
# Instead, Flutter is patched to allow the path to the Dart binary used for
|
# Instead, Flutter is patched to allow the path to the Dart binary used for
|
||||||
# Pub commands to be overriden.
|
# Pub commands to be overriden.
|
||||||
export NIX_FLUTTER_PUB_DART="${runCommand "dart-with-certs" { nativeBuildInputs = [ makeWrapper ]; } ''
|
export NIX_FLUTTER_PUB_DART="${runCommand "dart-with-certs" { nativeBuildInputs = [ makeWrapper ]; } ''
|
||||||
mkdir -p "$out/bin"
|
mkdir -p "$out/bin"
|
||||||
makeWrapper ${flutter.dart}/bin/dart "$out/bin/dart" \
|
makeWrapper ${flutter.dart}/bin/dart "$out/bin/dart" \
|
||||||
--add-flags "--root-certs-file=${cacert}/etc/ssl/certs/ca-bundle.crt"
|
--add-flags "--root-certs-file=${cacert}/etc/ssl/certs/ca-bundle.crt"
|
||||||
''}/bin/dart"
|
''}/bin/dart"
|
||||||
|
|
||||||
export HOME="$NIX_BUILD_TOP"
|
export HOME="$NIX_BUILD_TOP"
|
||||||
flutter config --no-analytics &>/dev/null # mute first-run
|
flutter config --no-analytics &>/dev/null # mute first-run
|
||||||
flutter config --enable-linux-desktop >/dev/null
|
flutter config --enable-linux-desktop >/dev/null
|
||||||
'';
|
'';
|
||||||
|
|
||||||
inherit pubGetScript;
|
inherit pubGetScript;
|
||||||
|
|
||||||
sdkSourceBuilders = {
|
sdkSourceBuilders = {
|
||||||
# https://github.com/dart-lang/pub/blob/68dc2f547d0a264955c1fa551fa0a0e158046494/lib/src/sdk/flutter.dart#L81
|
# https://github.com/dart-lang/pub/blob/68dc2f547d0a264955c1fa551fa0a0e158046494/lib/src/sdk/flutter.dart#L81
|
||||||
"flutter" = name: runCommand "flutter-sdk-${name}" { passthru.packageRoot = "."; } ''
|
"flutter" = name: runCommand "flutter-sdk-${name}" { passthru.packageRoot = "."; } ''
|
||||||
for path in '${flutter}/packages/${name}' '${flutter}/bin/cache/pkg/${name}'; do
|
for path in '${flutter}/packages/${name}' '${flutter}/bin/cache/pkg/${name}'; do
|
||||||
if [ -d "$path" ]; then
|
if [ -d "$path" ]; then
|
||||||
ln -s "$path" "$out"
|
ln -s "$path" "$out"
|
||||||
break
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ ! -e "$out" ]; then
|
||||||
|
echo 1>&2 'The Flutter SDK does not contain the requested package: ${name}!'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
extraPackageConfigSetup = ''
|
||||||
|
# https://github.com/flutter/flutter/blob/3.13.8/packages/flutter_tools/lib/src/dart/pub.dart#L755
|
||||||
|
if [ "$('${yq}/bin/yq' '.flutter.generate // false' pubspec.yaml)" = "true" ]; then
|
||||||
|
'${jq}/bin/jq' '.packages |= . + [{
|
||||||
|
name: "flutter_gen",
|
||||||
|
rootUri: "flutter_gen",
|
||||||
|
languageVersion: "2.12",
|
||||||
|
}]' "$out" | '${moreutils}/bin/sponge' "$out"
|
||||||
fi
|
fi
|
||||||
done
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
if [ ! -e "$out" ]; then
|
linux = universal // {
|
||||||
echo 1>&2 'The Flutter SDK does not contain the requested package: ${name}!'
|
outputs = universal.outputs or [ ] ++ [ "debug" ];
|
||||||
exit 1
|
|
||||||
fi
|
nativeBuildInputs = (universal.nativeBuildInputs or [ ]) ++ [
|
||||||
'';
|
wrapGAppsHook
|
||||||
|
|
||||||
|
# Flutter requires pkg-config for Linux desktop support, and many plugins
|
||||||
|
# attempt to use it.
|
||||||
|
#
|
||||||
|
# It is available to the `flutter` tool through its wrapper, but it must be
|
||||||
|
# added here as well so the setup hook adds plugin dependencies to the
|
||||||
|
# pkg-config search paths.
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = (universal.buildInputs or [ ]) ++ [ glib ];
|
||||||
|
|
||||||
|
dontDartBuild = true;
|
||||||
|
buildPhase = universal.buildPhase or ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
|
mkdir -p build/flutter_assets/fonts
|
||||||
|
|
||||||
|
flutter build linux -v --release --split-debug-info="$debug" ${builtins.concatStringsSep " " (map (flag: "\"${flag}\"") flutterBuildFlags)}
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontDartInstall = true;
|
||||||
|
installPhase = universal.installPhase or ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
built=build/linux/*/release/bundle
|
||||||
|
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mv $built $out/app
|
||||||
|
|
||||||
|
for f in $(find $out/app -iname "*.desktop" -type f); do
|
||||||
|
install -D $f $out/share/applications/$(basename $f)
|
||||||
|
done
|
||||||
|
|
||||||
|
for f in $(find $out/app -maxdepth 1 -type f); do
|
||||||
|
ln -s $f $out/bin/$(basename $f)
|
||||||
|
done
|
||||||
|
|
||||||
|
# make *.so executable
|
||||||
|
find $out/app -iname "*.so" -type f -exec chmod +x {} +
|
||||||
|
|
||||||
|
# remove stuff like /build/source/packages/ubuntu_desktop_installer/linux/flutter/ephemeral
|
||||||
|
for f in $(find $out/app -executable -type f); do
|
||||||
|
if patchelf --print-rpath "$f" | grep /build; then # this ignores static libs (e,g. libapp.so) also
|
||||||
|
echo "strip RPath of $f"
|
||||||
|
newrp=$(patchelf --print-rpath $f | sed -r "s|/build.*ephemeral:||g" | sed -r "s|/build.*profile:||g")
|
||||||
|
patchelf --set-rpath "$newrp" "$f"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontWrapGApps = true;
|
||||||
|
extraWrapProgramArgs = ''
|
||||||
|
''${gappsWrapperArgs[@]} \
|
||||||
|
${extraWrapProgramArgs}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
web = universal // {
|
||||||
|
dontDartBuild = true;
|
||||||
|
buildPhase = universal.buildPhase or ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
|
mkdir -p build/flutter_assets/fonts
|
||||||
|
|
||||||
|
flutter build web -v --release ${builtins.concatStringsSep " " (map (flag: "\"${flag}\"") flutterBuildFlags)}
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontDartInstall = true;
|
||||||
|
installPhase = universal.installPhase or ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
cp -r build/web "$out"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
in
|
||||||
extraPackageConfigSetup = ''
|
(buildDartApplication.override { dart = flutter.override { supportedTargetFlutterPlatforms = [ "universal" flutterHostPlatform ]; }; })
|
||||||
# https://github.com/flutter/flutter/blob/3.13.8/packages/flutter_tools/lib/src/dart/pub.dart#L755
|
hostPlatforms.${flutterHostPlatform} or "Unsupported Flutter host platform: ${flutterHostPlatform}"
|
||||||
if [ "$('${yq}/bin/yq' '.flutter.generate // false' pubspec.yaml)" = "true" ]; then
|
|
||||||
'${jq}/bin/jq' '.packages |= . + [{
|
|
||||||
name: "flutter_gen",
|
|
||||||
rootUri: "flutter_gen",
|
|
||||||
languageVersion: "2.12",
|
|
||||||
}]' "$out" | '${moreutils}/bin/sponge' "$out"
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [
|
|
||||||
wrapGAppsHook
|
|
||||||
|
|
||||||
# Flutter requires pkg-config for Linux desktop support, and many plugins
|
|
||||||
# attempt to use it.
|
|
||||||
#
|
|
||||||
# It is available to the `flutter` tool through its wrapper, but it must be
|
|
||||||
# added here as well so the setup hook adds plugin dependencies to the
|
|
||||||
# pkg-config search paths.
|
|
||||||
pkg-config
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = (args.buildInputs or [ ]) ++ [ glib ];
|
|
||||||
|
|
||||||
dontDartBuild = true;
|
|
||||||
buildPhase = args.buildPhase or ''
|
|
||||||
runHook preBuild
|
|
||||||
|
|
||||||
mkdir -p build/flutter_assets/fonts
|
|
||||||
|
|
||||||
flutter build linux -v --release --split-debug-info="$debug" ${builtins.concatStringsSep " " (map (flag: "\"${flag}\"") flutterBuildFlags)}
|
|
||||||
|
|
||||||
runHook postBuild
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontDartInstall = true;
|
|
||||||
installPhase = args.installPhase or ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
built=build/linux/*/release/bundle
|
|
||||||
|
|
||||||
mkdir -p $out/bin
|
|
||||||
mv $built $out/app
|
|
||||||
|
|
||||||
for f in $(find $out/app -iname "*.desktop" -type f); do
|
|
||||||
install -D $f $out/share/applications/$(basename $f)
|
|
||||||
done
|
|
||||||
|
|
||||||
for f in $(find $out/app -maxdepth 1 -type f); do
|
|
||||||
ln -s $f $out/bin/$(basename $f)
|
|
||||||
done
|
|
||||||
|
|
||||||
# make *.so executable
|
|
||||||
find $out/app -iname "*.so" -type f -exec chmod +x {} +
|
|
||||||
|
|
||||||
# remove stuff like /build/source/packages/ubuntu_desktop_installer/linux/flutter/ephemeral
|
|
||||||
for f in $(find $out/app -executable -type f); do
|
|
||||||
if patchelf --print-rpath "$f" | grep /build; then # this ignores static libs (e,g. libapp.so) also
|
|
||||||
echo "strip RPath of $f"
|
|
||||||
newrp=$(patchelf --print-rpath $f | sed -r "s|/build.*ephemeral:||g" | sed -r "s|/build.*profile:||g")
|
|
||||||
patchelf --set-rpath "$newrp" "$f"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
# Install the package_config.json file.
|
|
||||||
# This is normally done by dartInstallHook, but we disable it.
|
|
||||||
mkdir -p "$pubcache"
|
|
||||||
cp .dart_tool/package_config.json "$pubcache/package_config.json"
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontWrapGApps = true;
|
|
||||||
extraWrapProgramArgs = ''
|
|
||||||
''${gappsWrapperArgs[@]} \
|
|
||||||
${extraWrapProgramArgs}
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
|
|
|
@ -51,12 +51,7 @@ let
|
||||||
(mkCustomFlutter args).overrideAttrs (prev: next: {
|
(mkCustomFlutter args).overrideAttrs (prev: next: {
|
||||||
passthru = next.passthru // rec {
|
passthru = next.passthru // rec {
|
||||||
inherit wrapFlutter mkCustomFlutter mkFlutter;
|
inherit wrapFlutter mkCustomFlutter mkFlutter;
|
||||||
buildFlutterApplication = callPackage ../../../build-support/flutter {
|
buildFlutterApplication = callPackage ../../../build-support/flutter { flutter = wrapFlutter (mkCustomFlutter args); };
|
||||||
# Package a minimal version of Flutter that only uses Linux desktop release artifacts.
|
|
||||||
flutter = (wrapFlutter (mkCustomFlutter args)).override {
|
|
||||||
supportedTargetFlutterPlatforms = [ "universal" "linux" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue