We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ec480 commit b630796Copy full SHA for b630796
‎devenv.nix
@@ -24,7 +24,9 @@
24
gluon.exec = "pnpm gluon $@";
25
download.exec = "gluon download";
26
import.exec = "gluon import";
27
- build.exec = "gluon build";
+ build.exec = "unset AS && gluon build";
28
+ # MAR generation generally fails, but we ignore that
29
+ package.exec = "gluon package || echo 0";
30
};
31
32
packages = with pkgs; [
‎src/quark-runtime/moz.configure
@@ -4,6 +4,7 @@
4
5
imply_option("MOZ_APP_BASENAME", "Experiment")
6
imply_option("MOZ_APP_VENDOR", "trickypr")
7
+imply_option("MOZ_APP_ID", "{dda969a5-00d5-441a-8fcd-0a0dc55b490b}")
8
9
# this is required to define mozilla::components::History::GetServiceHelper in objdir/xpcom/components/Components.h
10
imply_option("MOZ_PLACES", True)
0 commit comments