-
Notifications
You must be signed in to change notification settings - Fork 0
/
gnome-shell.log
1725 lines (1706 loc) · 239 KB
/
gnome-shell.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Running phase: unpackPhase
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking source archive /nix/store/4s5gwkzx4fnrmgsppslp4xixrkc6najx-gnome-shell-46.4.tar.xz
source root is gnome-shell-46.4
setting SOURCE_DATE_EPOCH to timestamp 1722781035 of file gnome-shell-46.4/data/theme/gnome-shell-light.css
Running phase: patchPhase
@nix { "action": "setPhase", "phase": "patchPhase" }
applying patch /nix/store/b2sjqxlgy8ii6kwfikfp2p3c7aq62gs3-fix-paths.patch
patching file data/org.gnome.Shell-disable-extensions.service
patching file js/ui/extensionDownloader.js
Hunk #1 succeeded at 126 (offset 16 lines).
Hunk #2 succeeded at 148 (offset 16 lines).
patching file js/ui/status/keyboard.js
Hunk #1 succeeded at 1131 with fuzz 2 (offset 39 lines).
patching file subprojects/extensions-tool/src/command-install.c
applying patch /nix/store/lvcbvgyzbw7lmiv7alrncl9md3nvbidd-shew-gir-path.patch
patching file subprojects/shew/src/meson.build
applying patch /nix/store/ywlajd02glm62sjbs3mb4ld06lbgpbkj-wrap-services.patch
patching file js/dbusServices/dbus-service.in
patching file js/dbusServices/dbus-service.service.in
patching file js/dbusServices/meson.build
Hunk #2 succeeded at 14 (offset -5 lines).
applying patch /nix/store/n48xj8c1dgak2g7chkjsibi4cmprdw0p-greeter-logo-size.patch
patching file js/gdm/loginDialog.js
applying patch /nix/store/fsxdkg08hx6h95snvfh6j7b5w5k427x0-0001-gdm-Work-around-failing-fingerprint-auth.patch
patching file js/gdm/util.js
Hunk #2 succeeded at 671 (offset 1 line).
Hunk #3 succeeded at 769 (offset 1 line).
Hunk #4 succeeded at 843 (offset 8 lines).
patching script interpreter paths in src/data-to-c.pl
src/data-to-c.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/ww69rb7srifikvilg39q4v8n9h1zcssf-perl-5.38.2/bin/perl"
Running phase: updateAutotoolsGnuConfigScriptsPhase
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" }
Running phase: configurePhase
@nix { "action": "setPhase", "phase": "configurePhase" }
mesonConfigurePhase flags: --prefix=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4 --libdir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib --libexecdir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec --bindir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/bin --sbindir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/sbin --includedir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/include --mandir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/man --infodir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/info --localedir=/nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale -Dauto_features=enabled -Dwrap_mode=nodownload --buildtype=plain -Dgtk_doc=true -Dtests=false
[1mThe Meson build system[0m
Version: 1.5.1
Source dir: [1m/build/gnome-shell-46.4[0m
Build dir: [1m/build/gnome-shell-46.4/build[0m
Build type: [1mnative build[0m
Project name: [1mgnome-shell[0m
Project version: [1m46.4[0m
C compiler for the host machine: [1mgcc[0m (gcc 13.3.0 "gcc (GCC) 13.3.0")
C linker for the host machine: [1mgcc[0m ld.bfd 2.42
Host machine cpu family: [1mx86_64[0m
Host machine cpu: [1mx86_64[0m
Found pkg-config: [1;32mYES[0m [1m(/nix/store/02vzklfgfpaf457rq927fq3jj5hn133f-pkg-config-wrapper-0.29.2/bin/pkg-config)[0m [1;34m0.29.2[0m
Did not find CMake 'cmake'
Found CMake: [1;31mNO[0m
Run-time dependency [1mgnome-keybindings[0m found: [1;31mNO[0m (tried pkgconfig and cmake)
Run-time dependency [1matk-bridge-2.0[0m found: [1;32mYES[0m [36m2.52.0[0m
Run-time dependency [1mlibecal-2.0[0m found: [1;32mYES[0m [36m3.52.4[0m
Run-time dependency [1mlibedataserver-1.2[0m found: [1;32mYES[0m [36m3.52.4[0m
Run-time dependency [1mgcr-4[0m found: [1;32mYES[0m [36m4.3.0[0m
Run-time dependency [1mgdk-pixbuf-2.0[0m found: [1;32mYES[0m [36m2.42.12[0m
Run-time dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m
Run-time dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
Run-time dependency [1mgio-unix-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
Run-time dependency [1mgjs-1.0[0m found: [1;32mYES[0m [36m1.80.2[0m
Run-time dependency [1mgtk4[0m found: [1;32mYES[0m [36m4.14.5[0m
Run-time dependency [1mlibxml-2.0[0m found: [1;32mYES[0m [36m2.13.3[0m
Run-time dependency [1mmutter-clutter-14[0m found: [1;32mYES[0m [36m46.4[0m
Run-time dependency [1mmutter-mtk-14[0m found: [1;32mYES[0m [36m46.4[0m
Run-time dependency [1mmutter-cogl-14[0m found: [1;32mYES[0m [36m46.4[0m
Run-time dependency [1mmutter-cogl-pango-14[0m found: [1;32mYES[0m [36m46.4[0m
Run-time dependency [1mlibmutter-14[0m found: [1;32mYES[0m [36m46.4[0m
Run-time dependency [1mpolkit-agent-1[0m found: [1;32mYES[0m [36m124[0m
Run-time dependency [1mibus-1.0[0m found: [1;32mYES[0m [36m1.5.30[0m
Run-time dependency [1mx11[0m found: [1;32mYES[0m [36m1.8.10[0m
Run-time dependency [1mgsettings-desktop-schemas[0m found: [1;32mYES[0m [36m46.0[0m
Run-time dependency [1mgnome-desktop-4[0m found: [1;32mYES[0m [36m44.0[0m
Run-time dependency [1mlibnm[0m found: [1;32mYES[0m [36m1.48.10[0m
Run-time dependency [1mlibsecret-1[0m found: [1;32mYES[0m [36m0.21.4[0m
Run-time dependency [1mlibpipewire-0.3[0m found: [1;32mYES[0m [36m1.2.3[0m
Run-time dependency [1mlibsystemd[0m found: [1;32mYES[0m [36m256[0m
Run-time dependency [1msystemd[0m found: [1;32mYES[0m [36m256[0m
Program [1ma2x[0m found: [1;32mYES[0m (/nix/store/xq1wpw29d7hbxqi196ymh8qrsfj4fn4z-asciidoc-10.2.1/bin/a2x)
Program [1mpython3[0m found: [1;32mYES[0m (/nix/store/h3i0acpmr8mrjx07519xxmidv8mpax4y-python3-3.12.5/bin/python3)
Program [1mgjs[0m found: [1;32mYES[0m (/nix/store/482f2m88rl03bfbl7ypq3yiiqi94pb1n-gjs-1.80.2/bin/gjs)
Library [1mm[0m found: [1;32mYES[0m
Checking for function "[1mfdwalk[0m" : [1;31mNO[0m
Checking for function "[1mmallinfo[0m" : [1;32mYES[0m
Checking for function "[1mmallinfo2[0m" : [1;32mYES[0m
Has header "[1msys/resource.h[0m" : [1;32mYES[0m
Has header "[1melf.h[0m" : [1;32mYES[0m
Has header "[1mlink.h[0m" : [1;32mYES[0m
Header "[1mlanginfo.h[0m" has symbol "[1m_NL_TIME_FIRST_WEEKDAY[0m" : [1;32mYES[0m
Checking for function "[1mfdwalk[0m" : [1;31mNO[0m [1;34m(cached)[0m
Configuring [1mconfig.h[0m using configuration
Executing subproject [1mgvc[0m
gvc| Project name: [1mgvc[0m
gvc| Project version: [1mundefined[0m
gvc| C compiler for the host machine: [1mgcc[0m (gcc 13.3.0 "gcc (GCC) 13.3.0")
gvc| C linker for the host machine: [1mgcc[0m ld.bfd 2.42
gvc| Build-time dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
gvc| Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
gvc| Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
gvc| Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
gvc| Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
gvc| Run-time dependency [1mgobject-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
gvc| Run-time dependency [1mlibpulse[0m found: [1;32mYES[0m [36m17.0[0m
gvc| Run-time dependency [1mlibpulse-mainloop-glib[0m found: [1;32mYES[0m [36m17.0[0m
gvc| Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
gvc| Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
gvc| Program [1m/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-scanner[0m found: [1;32mYES[0m (/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-scanner)
gvc| Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
gvc| Program [1m/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-compiler[0m found: [1;32mYES[0m (/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-compiler)
gvc| Configuring [1mconfig.h[0m using configuration
gvc| Build targets in project: [1m6[0m
gvc| Subproject [1mgvc[0m finished.
Executing subproject [1mshew[0m
shew| Project name: [1mshew[0m
shew| Project version: [1m46.4[0m
shew| C compiler for the host machine: [1mgcc[0m (gcc 13.3.0 "gcc (GCC) 13.3.0")
shew| C linker for the host machine: [1mgcc[0m ld.bfd 2.42
shew| Dependency [1mgtk4[0m found: [1;32mYES[0m [36m4.14.5[0m [1;34m(cached)[0m
shew| Dependency [1mx11[0m found: [1;32mYES[0m [36m1.8.10[0m [1;34m(cached)[0m
shew| Build targets in project: [1m9[0m
shew| Subproject [1mshew[0m finished.
Executing subproject [1mextensions-tool[0m
extensions-tool| Project name: [1mgnome-extensions-tool[0m
extensions-tool| Project version: [1m46.4[0m
extensions-tool| C compiler for the host machine: [1mgcc[0m (gcc 13.3.0 "gcc (GCC) 13.3.0")
extensions-tool| C linker for the host machine: [1mgcc[0m ld.bfd 2.42
extensions-tool| Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
extensions-tool| Dependency [1mgio-unix-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
extensions-tool| Run-time dependency [1mgnome-autoar-0[0m found: [1;32mYES[0m [36m0.4.4[0m
extensions-tool| Run-time dependency [1mjson-glib-1.0[0m found: [1;32mYES[0m [36m1.8.0[0m
extensions-tool| Run-time dependency [1mbash-completion[0m found: [1;32mYES[0m [36m2.14.0[0m
extensions-tool| Checking for function "[1mbind_textdomain_codeset[0m" : [1;32mYES[0m
extensions-tool| Configuring [1mconfig.h[0m using configuration
extensions-tool| Program [1mmsgfmt[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgfmt)
extensions-tool| Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
extensions-tool| Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
extensions-tool| Build targets in project: [1m15[0m
extensions-tool| Subproject [1mextensions-tool[0m finished.
Executing subproject [1mextensions-app[0m
extensions-app| Project name: [1mgnome-extensions-app[0m
extensions-app| Project version: [1m46.4[0m
extensions-app| Program [1mgjs[0m found: [1;32mYES[0m (/nix/store/482f2m88rl03bfbl7ypq3yiiqi94pb1n-gjs-1.80.2/bin/gjs)
extensions-app| Program [1mappstream-util[0m found: [1;31mNO[0m
extensions-app| Program [1mappstreamcli[0m found: [1;31mNO[0m
extensions-app| Program [1mdesktop-file-validate[0m found: [1;32mYES[0m (/nix/store/ddll962r34wm8pdbc8c7is74r011bclw-desktop-file-utils-0.27/bin/desktop-file-validate)
extensions-app| Configuring [1morg.gnome.Extensions.metainfo.xml.in[0m using configuration
extensions-app| Configuring [1morg.gnome.Extensions.data.gresource.xml[0m using configuration
extensions-app| Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
extensions-app| Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
extensions-app| Configuring [1morg.gnome.Extensions.desktop.in[0m using configuration
extensions-app| Configuring [1morg.gnome.Extensions.service[0m using configuration
extensions-app| Configuring [1mgnome-extensions-app[0m using configuration
extensions-app| Configuring [1morg.gnome.Extensions[0m using configuration
extensions-app| Configuring [1mconfig.js[0m using configuration
extensions-app| Configuring [1morg.gnome.Extensions.src.gresource.xml[0m using configuration
extensions-app| Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
extensions-app| Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
extensions-app| Build targets in project: [1m19[0m
extensions-app| Subproject [1mextensions-app[0m finished.
Configuring [1mconfig.js[0m using configuration
Configuring [1morg.gnome.Shell.Extensions[0m using configuration
Configuring [1morg.gnome.Shell.Extensions.service[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Configuring [1morg.gnome.Shell.Notifications[0m using configuration
Configuring [1morg.gnome.Shell.Notifications.service[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Configuring [1morg.gnome.Shell.Screencast[0m using configuration
Configuring [1morg.gnome.Shell.Screencast.service[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Configuring [1morg.gnome.ScreenSaver[0m using configuration
Configuring [1morg.gnome.ScreenSaver.service[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Configuring [1morg.gnome.Shell.CalendarServer.service[0m using configuration
Configuring [1morg.gnome.Shell.HotplugSniffer.service[0m using configuration
Configuring [1mst.h[0m using configuration
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Program [1m/build/gnome-shell-46.4/src/data-to-c.pl[0m found: [1;32mYES[0m (/build/gnome-shell-46.4/src/data-to-c.pl)
Configuring [1mgnome-shell-test-tool[0m using configuration
Configuring [1mgnome-shell-extension-tool[0m using configuration
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/gdbus-codegen[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/gdbus-codegen)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/gdbus-codegen[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/gdbus-codegen)
Program [1mmsginit[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msginit)
Program [1mmsgmerge[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgmerge)
Program [1mxgettext[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/xgettext)
Configuring [1morg.gnome.Shell.desktop.in[0m using configuration
Configuring [1morg.gnome.Shell.Extensions.desktop.in[0m using configuration
Configuring [1morg.gnome.Shell.PortalHelper.desktop.in[0m using configuration
Configuring [1morg.gnome.Shell.PortalHelper.service[0m using configuration
Program [1msassc[0m found: [1;32mYES[0m (/nix/store/cgbl91lqxn3mv4sr77nry5i82dizjzda-sassc-3.6.2/bin/sassc)
Program [1msassc[0m found: [1;32mYES[0m (/nix/store/cgbl91lqxn3mv4sr77nry5i82dizjzda-sassc-3.6.2/bin/sassc)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Configuring [1mperf-background.xml[0m using configuration
Configuring [1morg.gnome.shell.gschema.xml[0m using configuration
Configuring [[email protected][0m using configuration
Configuring [[email protected][0m using configuration
Program [1mglib-compile-schemas[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas)
Program [1mgi-docgen[0m found: [1;32mYES[0m (/nix/store/niq59zzszyj4ln7xf5p07qjk25bpmncm-gi-docgen-2024.1/bin/gi-docgen)
Configuring [1mshell.toml[0m using configuration
Configuring [1mst.toml[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas)
Program [1mgtk4-update-icon-cache[0m found: [1;32mYES[0m (/nix/store/m0l2vlxacl4h1ghx58zyhcgzx1ddhvkj-gtk4-4.14.5/bin/gtk4-update-icon-cache)
Build targets in project: [1m153[0m
gnome-shell [36m46.4[0m
[1mDirectories[0m
prefix : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4
bindir : bin
libdir : lib
libexecdir : libexec
datadir : share
sysconfdir : etc
mandir : share/man
[1mBuild Configuration[0m
buildtype : plain
debug : false
[1mBuild Options[0m
camera_monitor : true
networkmanager : true
systemd : true
extensions_app : true
extensions_tool: true
man : true
gtk_doc : true
[1mSubprojects[0m
extensions-app : [1;32mYES[0m
extensions-tool: [1;32mYES[0m
gvc : [1;32mYES[0m
shew : [1;32mYES[0m
[1mUser defined options[0m
auto_features : enabled
bindir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/bin
buildtype : plain
includedir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/include
infodir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/info
libdir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib
libexecdir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec
localedir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale
mandir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/man
prefix : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4
sbindir : /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/sbin
wrap_mode : nodownload
gtk_doc : true
tests : false
Found ninja-1.12.1 at /nix/store/m0g218hn4rbq2wj7szzg8a112alq1qvc-ninja-1.12.1/bin/ninja
mesonConfigurePhase: enabled\ parallel\ building
Running phase: buildPhase
@nix { "action": "setPhase", "phase": "buildPhase" }
build flags: -j64
[1/284] Generating GObject enum file src/st/st-enum-types.c (wrapped by meson because command contains newlines, to capture output)
[2/284] Generating GObject enum file src/st/st-enum-types.h (wrapped by meson because command contains newlines, to capture output)
[3/284] Generating src/st/scroll-view-fade-glsl with a custom command (wrapped by meson to capture output)
[4/284] Generating GObject enum file subprojects/gvc/gvc-enum-types.c (wrapped by meson because command contains newlines, to capture output)
[5/284] Generating GObject enum file subprojects/gvc/gvc-enum-types.h (wrapped by meson because command contains newlines, to capture output)
[6/284] Compiling C object src/libgnome-shell-menu.so.p/gtkactionobservable.c.o
[7/284] Generating js/js-resources_h with a custom command
[8/284] Generating GObject enum file src/shell-enum-types.c (wrapped by meson because command contains newlines, to capture output)
[9/284] Generating GObject enum file src/shell-enum-types.h (wrapped by meson because command contains newlines, to capture output)
[10/284] Generating gdbus source src/org-gtk-application.c
[11/284] Generating gdbus header src/org-gtk-application.h
[12/284] Generating gdbus source src/switcheroo-control.c
[13/284] Generating gdbus header src/switcheroo-control.h
[14/284] Generating js/portal-resources_c with a custom command
[15/284] Generating js/portal-resources_h with a custom command
[16/284] Generating data/theme/gnome-shell-dark.css with a custom command
[17/284] Generating data/theme/gnome-shell-light.css with a custom command
[18/284] Generating subprojects/extensions-app/js/org.gnome.Extensions.src_gresource with a custom command
[19/284] Generating js/dbusServices/org.gnome.Shell.Extensions.src_gresource with a custom command
[20/284] Generating js/dbusServices/org.gnome.Shell.Notifications.src_gresource with a custom command
[21/284] Generating js/dbusServices/org.gnome.Shell.Screencast.src_gresource with a custom command
[22/284] Generating js/dbusServices/org.gnome.ScreenSaver.src_gresource with a custom command
[23/284] Building translation po/ab/LC_MESSAGES/gnome-shell-ab.mo
[24/284] Building translation po/af/LC_MESSAGES/gnome-shell-af.mo
[25/284] Building translation po/an/LC_MESSAGES/gnome-shell-an.mo
[26/284] Building translation po/ar/LC_MESSAGES/gnome-shell-ar.mo
[27/284] Building translation po/as/LC_MESSAGES/gnome-shell-as.mo
[28/284] Building translation po/ast/LC_MESSAGES/gnome-shell-ast.mo
[29/284] Building translation po/be/LC_MESSAGES/gnome-shell-be.mo
[30/284] Building translation po/bg/LC_MESSAGES/gnome-shell-bg.mo
[31/284] Building translation po/bn/LC_MESSAGES/gnome-shell-bn.mo
[32/284] Building translation po/bn_IN/LC_MESSAGES/gnome-shell-bn_IN.mo
[33/284] Building translation po/bs/LC_MESSAGES/gnome-shell-bs.mo
[34/284] Building translation po/ca/LC_MESSAGES/gnome-shell-ca.mo
[35/284] Building translation po/ca@valencia/LC_MESSAGES/[email protected]
[36/284] Building translation po/ckb/LC_MESSAGES/gnome-shell-ckb.mo
[37/284] Building translation po/cs/LC_MESSAGES/gnome-shell-cs.mo
[38/284] Building translation po/da/LC_MESSAGES/gnome-shell-da.mo
[39/284] Building translation po/de/LC_MESSAGES/gnome-shell-de.mo
[40/284] Compiling C object src/libgnome-shell-menu.so.p/gtkactionobserver.c.o
[41/284] Generating js/js-resources_c with a custom command
[42/284] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window-x11.c.o
[43/284] Compiling C object src/hotplug-sniffer/gnome-shell-hotplug-sniffer.p/hotplug-sniffer.c.o
[44/284] Building translation po/el/LC_MESSAGES/gnome-shell-el.mo
[45/284] Building translation po/en_GB/LC_MESSAGES/gnome-shell-en_GB.mo
[46/284] Building translation po/eo/LC_MESSAGES/gnome-shell-eo.mo
[47/284] Building translation po/es/LC_MESSAGES/gnome-shell-es.mo
[48/284] Building translation po/et/LC_MESSAGES/gnome-shell-et.mo
[49/284] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window-wayland.c.o
[50/284] Compiling C object src/calendar-server/gnome-shell-calendar-server.p/calendar-sources.c.o
[51/284] Compiling C object src/hotplug-sniffer/gnome-shell-hotplug-sniffer.p/shell-mime-sniffer.c.o
[52/284] Compiling C object src/run-js-test.p/run-js-test.c.o
[53/284] Compiling C object src/libgnome-shell-menu.so.p/gtkactionmuxer.c.o
[54/284] Compiling C object src/tray/libtray.a.p/na-tray-child.c.o
[55/284] Compiling C object src/tray/libtray.a.p/na-tray-manager.c.o
[56/284] Compiling C object src/tray/libtray.a.p/na-xembed.c.o
[57/284] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window.c.o
[58/284] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-window-exporter.c.o
[59/284] Merging translations for subprojects/extensions-tool/src/templates/00-plain.desktop
[60/284] Merging translations for subprojects/extensions-tool/src/templates/indicator.desktop
[61/284] Merging translations for subprojects/extensions-tool/src/templates/quick-settings.desktop
[62/284] Merging translations for subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml
[63/284] Compiling C object src/calendar-server/gnome-shell-calendar-server.p/gnome-shell-calendar-server.c.o
[64/284] Generating man/man page with a custom command
[65/284] Merging translations for subprojects/extensions-app/data/org.gnome.Extensions.desktop
[66/284] Compiling C object src/gnome-shell.p/main.c.o
[67/284] Compiling C object src/st/libst-14.so.p/st-bin.c.o
[68/284] Compiling C object src/st/libst-14.so.p/st-border-image.c.o
[69/284] Compiling C object src/st/libst-14.so.p/st-generic-accessible.c.o
[70/284] Compiling C object src/st/libst-14.so.p/st-icon-cache.c.o
[71/284] Compiling C object src/st/libst-14.so.p/st-icon-colors.c.o
[72/284] Compiling C object src/st/libst-14.so.p/st-label.c.o
[73/284] Compiling C object src/st/libst-14.so.p/st-scrollable.c.o
[74/284] Compiling C object src/st/libst-14.so.p/st-settings.c.o
[75/284] Compiling C object src/st/libst-14.so.p/st-shadow.c.o
[76/284] Compiling C object src/st/libst-14.so.p/croco_cr-additional-sel.c.o
[77/284] Compiling C object src/st/libst-14.so.p/croco_cr-attr-sel.c.o
[78/284] Compiling C object src/st/libst-14.so.p/croco_cr-cascade.c.o
[79/284] Compiling C object src/st/libst-14.so.p/croco_cr-doc-handler.c.o
[80/284] Compiling C object src/st/libst-14.so.p/croco_cr-enc-handler.c.o
[81/284] Compiling C object src/st/libst-14.so.p/croco_cr-fonts.c.o
[82/284] Compiling C object src/st/libst-14.so.p/croco_cr-input.c.o
[83/284] Compiling C object src/st/libst-14.so.p/croco_cr-num.c.o
[84/284] Compiling C object src/st/libst-14.so.p/croco_cr-parsing-location.c.o
[85/284] Compiling C object src/st/libst-14.so.p/croco_cr-prop-list.c.o
[86/284] Compiling C object src/st/libst-14.so.p/croco_cr-pseudo.c.o
[87/284] Compiling C object src/st/libst-14.so.p/croco_cr-rgb.c.o
[88/284] Compiling C object src/st/libst-14.so.p/croco_cr-selector.c.o
[89/284] Compiling C object src/st/libst-14.so.p/meson-generated_.._st-enum-types.c.o
[90/284] Compiling C object src/st/libst-14.so.p/st-adjustment.c.o
[91/284] Compiling C object src/st/libst-14.so.p/st-box-layout.c.o
[92/284] Compiling C object src/st/libst-14.so.p/st-drawing-area.c.o
[93/284] Compiling C object src/st/libst-14.so.p/st-focus-manager.c.o
[94/284] Compiling C object src/st/libst-14.so.p/st-password-entry.c.o
[95/284] Compiling C object src/st/libst-14.so.p/st-scroll-view-fade.c.o
[96/284] Compiling C object src/st/libst-14.so.p/croco_cr-declaration.c.o
[97/284] Compiling C object src/st/libst-14.so.p/croco_cr-om-parser.c.o
[98/284] Linking static target src/tray/libtray.a
[99/284] Compiling C object src/st/libst-14.so.p/st-image-content.c.o
[100/284] Compiling C object src/st/libst-14.so.p/croco_cr-stylesheet.c.o
[101/284] Compiling C object src/st/libst-14.so.p/st-clipboard.c.o
[102/284] Compiling C object src/st/libst-14.so.p/croco_cr-simple-sel.c.o
[103/284] Compiling C object src/st/libst-14.so.p/st-button.c.o
[104/284] Compiling C object src/st/libst-14.so.p/croco_cr-string.c.o
[105/284] Compiling C object src/st/libst-14.so.p/st-scroll-bar.c.o
[106/284] Generating subprojects/extensions-tool/src/resources_c with a custom command
[107/284] Compiling C object src/st/libst-14.so.p/st-theme-context.c.o
[108/284] Generating subprojects/extensions-tool/src/resources_h with a custom command
[109/284] Linking target src/libgnome-shell-menu.so
[110/284] Compiling C object src/st/libst-14.so.p/st-theme.c.o
[111/284] Compiling C object src/st/libst-14.so.p/st-scroll-view.c.o
[112/284] Compiling C object subprojects/gvc/libgvc.so.p/meson-generated_.._gvc-enum-types.c.o
[113/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-source.c.o
[114/284] Compiling C object src/libshell-14.so.p/shell-camera-monitor.c.o
[115/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-channel-map.c.o
[116/284] Compiling C object src/st/libst-14.so.p/st-theme-node-transition.c.o
[117/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-event-role.c.o
[118/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-source-output.c.o
[119/284] Compiling C object src/st/libst-14.so.p/st-private.c.o
[120/284] Linking target subprojects/shew/src/libshew-0.so
[121/284] Generating symbol file src/libgnome-shell-menu.so.p/libgnome-shell-menu.so.symbols
[122/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-sink-input.c.o
[123/284] Compiling C object src/st/libst-14.so.p/st-viewport.c.o
[124/284] Compiling C object src/st/libst-14.so.p/croco_cr-token.c.o
[125/284] Compiling C object src/st/libst-14.so.p/croco_cr-utils.c.o
[126/284] Compiling C object src/libshell-14.so.p/shell-mount-operation.c.o
[127/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/meson-generated_.._resources.c.o
[128/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-sink.c.o
[129/284] Generating subprojects/extensions-app/data/org.gnome.Extensions.data_gresource with a custom command
[130/284] Building translation po/eu/LC_MESSAGES/gnome-shell-eu.mo
[131/284] Compiling C object src/st/libst-14.so.p/croco_cr-term.c.o
[132/284] Building translation po/fi/LC_MESSAGES/gnome-shell-fi.mo
[133/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-ui-device.c.o
[134/284] Building translation po/fa/LC_MESSAGES/gnome-shell-fa.mo
[135/284] Building translation po/fr/LC_MESSAGES/gnome-shell-fr.mo
[136/284] Compiling C object src/libshell-14.so.p/shell-polkit-authentication-agent.c.o
[137/284] Building translation po/fur/LC_MESSAGES/gnome-shell-fur.mo
[138/284] Building translation po/fy/LC_MESSAGES/gnome-shell-fy.mo
[139/284] Building translation po/ga/LC_MESSAGES/gnome-shell-ga.mo
[140/284] Compiling C object src/st/libst-14.so.p/st-entry.c.o
[141/284] Building translation po/gd/LC_MESSAGES/gnome-shell-gd.mo
[142/284] Building translation po/gl/LC_MESSAGES/gnome-shell-gl.mo
[143/284] Compiling C object src/st/libst-14.so.p/st-icon.c.o
[144/284] Compiling C object src/libshell-14.so.p/shell-glsl-effect.c.o
[145/284] Building translation po/gu/LC_MESSAGES/gnome-shell-gu.mo
[146/284] Building translation po/he/LC_MESSAGES/gnome-shell-he.mo
[147/284] Building translation po/hi/LC_MESSAGES/gnome-shell-hi.mo
[148/284] Building translation po/hr/LC_MESSAGES/gnome-shell-hr.mo
[149/284] Compiling C object src/gnome-shell-portal-helper.p/meson-generated_.._.._js_portal-resources.c.o
[150/284] Building translation po/hu/LC_MESSAGES/gnome-shell-hu.mo
[151/284] Building translation po/ia/LC_MESSAGES/gnome-shell-ia.mo
[152/284] Building translation po/id/LC_MESSAGES/gnome-shell-id.mo
[153/284] Building translation po/ie/LC_MESSAGES/gnome-shell-ie.mo
[154/284] Building translation po/is/LC_MESSAGES/gnome-shell-is.mo
[155/284] Building translation po/it/LC_MESSAGES/gnome-shell-it.mo
[156/284] Building translation po/ja/LC_MESSAGES/gnome-shell-ja.mo
[157/284] Compiling C object src/st/libst-14.so.p/st-icon-theme.c.o
[158/284] Building translation po/kab/LC_MESSAGES/gnome-shell-kab.mo
[159/284] Building translation po/kk/LC_MESSAGES/gnome-shell-kk.mo
[160/284] Building translation po/km/LC_MESSAGES/gnome-shell-km.mo
[161/284] Building translation po/kn/LC_MESSAGES/gnome-shell-kn.mo
[162/284] Building translation po/ku/LC_MESSAGES/gnome-shell-ku.mo
[163/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-disable.c.o
[164/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-enable.c.o
[165/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-info.c.o
[166/284] Building translation po/ka/LC_MESSAGES/gnome-shell-ka.mo
[167/284] Building translation po/ko/LC_MESSAGES/gnome-shell-ko.mo
[168/284] Building translation po/ky/LC_MESSAGES/gnome-shell-ky.mo
[169/284] Building translation po/lt/LC_MESSAGES/gnome-shell-lt.mo
[170/284] Building translation po/lv/LC_MESSAGES/gnome-shell-lv.mo
[171/284] Building translation po/mjw/LC_MESSAGES/gnome-shell-mjw.mo
[172/284] Building translation po/mk/LC_MESSAGES/gnome-shell-mk.mo
[173/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-card.c.o
[174/284] Linking target src/hotplug-sniffer/gnome-shell-hotplug-sniffer
[175/284] Building translation po/ml/LC_MESSAGES/gnome-shell-ml.mo
[176/284] Building translation po/mr/LC_MESSAGES/gnome-shell-mr.mo
[177/284] Building translation po/ms/LC_MESSAGES/gnome-shell-ms.mo
[178/284] Building translation po/nb/LC_MESSAGES/gnome-shell-nb.mo
[179/284] Building translation po/ne/LC_MESSAGES/gnome-shell-ne.mo
[180/284] Building translation po/nl/LC_MESSAGES/gnome-shell-nl.mo
[181/284] Building translation po/nn/LC_MESSAGES/gnome-shell-nn.mo
[182/284] Building translation po/or/LC_MESSAGES/gnome-shell-or.mo
[183/284] Building translation po/os/LC_MESSAGES/gnome-shell-os.mo
[184/284] Compiling C object src/st/libst-14.so.p/st-texture-cache.c.o
[185/284] Compiling C object src/libshell-14.so.p/shell-window-preview-layout.c.o
[186/284] Compiling C object src/libshell-14.so.p/shell-workspace-background.c.o
[187/284] Building translation po/oc/LC_MESSAGES/gnome-shell-oc.mo
[188/284] Building translation po/pa/LC_MESSAGES/gnome-shell-pa.mo
[189/284] Building translation po/pl/LC_MESSAGES/gnome-shell-pl.mo
[190/284] Building translation po/pt/LC_MESSAGES/gnome-shell-pt.mo
[191/284] Building translation po/pt_BR/LC_MESSAGES/gnome-shell-pt_BR.mo
[192/284] Building translation po/ro/LC_MESSAGES/gnome-shell-ro.mo
[193/284] Building translation po/ru/LC_MESSAGES/gnome-shell-ru.mo
[194/284] Building translation po/si/LC_MESSAGES/gnome-shell-si.mo
[195/284] Building translation po/sk/LC_MESSAGES/gnome-shell-sk.mo
[196/284] Compiling C object src/st/libst-14.so.p/st-widget.c.o
[197/284] Compiling C object src/libshell-14.so.p/meson-generated_.._switcheroo-control.c.o
[198/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-prefs.c.o
[199/284] Building translation po/sl/LC_MESSAGES/gnome-shell-sl.mo
[200/284] Building translation po/sr/LC_MESSAGES/gnome-shell-sr.mo
[201/284] Building translation po/sr@latin/LC_MESSAGES/[email protected]
[202/284] Building translation po/sv/LC_MESSAGES/gnome-shell-sv.mo
[203/284] Building translation po/ta/LC_MESSAGES/gnome-shell-ta.mo
[204/284] Building translation po/te/LC_MESSAGES/gnome-shell-te.mo
[205/284] Building translation po/tg/LC_MESSAGES/gnome-shell-tg.mo
[206/284] Building translation po/th/LC_MESSAGES/gnome-shell-th.mo
[207/284] Building translation po/tr/LC_MESSAGES/gnome-shell-tr.mo
[208/284] Building translation po/ug/LC_MESSAGES/gnome-shell-ug.mo
[209/284] Building translation po/uk/LC_MESSAGES/gnome-shell-uk.mo
[210/284] Building translation po/uz@cyrillic/LC_MESSAGES/[email protected]
[211/284] Building translation po/zh_CN/LC_MESSAGES/gnome-shell-zh_CN.mo
[212/284] Building translation po/zh_HK/LC_MESSAGES/gnome-shell-zh_HK.mo
[213/284] Compiling C object src/libshell-14.so.p/meson-generated_.._.._js_js-resources.c.o
[214/284] Compiling C object src/libshell-14.so.p/gnome-shell-plugin.c.o
[215/284] Compiling C object src/libshell-14.so.p/shell-invert-lightness-effect.c.o
[216/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-reset.c.o
[217/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-uninstall.c.o
[218/284] Building translation po/vi/LC_MESSAGES/gnome-shell-vi.mo
[219/284] Building translation po/zh_TW/LC_MESSAGES/gnome-shell-zh_TW.mo
[220/284] Linking target src/calendar-server/gnome-shell-calendar-server
[221/284] Generating data/compile-schemas with a custom command
[222/284] Generating data/gnome-shell-theme_gresource with a custom command
[223/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-list.c.o
[224/284] Generating data/gnome-shell-osk-layouts_gresource with a custom command
[225/284] Compiling C object src/libshell-14.so.p/shell-app-system.c.o
[226/284] Compiling C object src/gnome-shell-portal-helper.p/gnome-shell-portal-helper.c.o
[227/284] Compiling C object src/libshell-14.so.p/shell-app-usage.c.o
[228/284] Compiling C object src/libshell-14.so.p/meson-generated_.._org-gtk-application.c.o
[229/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-install.c.o
[230/284] Compiling C object src/st/libst-14.so.p/croco_cr-parser.c.o
[231/284] Compiling C object src/libshell-14.so.p/shell-square-bin.c.o
[232/284] Compiling C object src/libshell-14.so.p/shell-secure-text-buffer.c.o
[233/284] Compiling C object src/libshell-14.so.p/shell-wm.c.o
[234/284] Compiling C object src/libshell-14.so.p/shell-perf-log.c.o
[235/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-stream.c.o
[236/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/main.c.o
[237/284] Compiling C object src/libshell-14.so.p/shell-blur-effect.c.o
[238/284] Compiling C object src/libshell-14.so.p/shell-network-agent.c.o
[239/284] Compiling C object src/libshell-14.so.p/shell-keyring-prompt.c.o
[240/284] Compiling C object src/libshell-14.so.p/shell-tray-manager.c.o
[241/284] Compiling C object src/st/libst-14.so.p/st-theme-node.c.o
[242/284] Compiling C object src/st/libst-14.so.p/st-theme-node-drawing.c.o
[243/284] Compiling C object src/st/libst-14.so.p/croco_cr-statement.c.o
[244/284] Compiling C object src/st/libst-14.so.p/croco_cr-tknzr.c.o
[245/284] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-control.c.o
[246/284] Compiling C object src/libshell-14.so.p/meson-generated_.._shell-enum-types.c.o
[247/284] Compiling C object src/libshell-14.so.p/shell-app.c.o
[248/284] Compiling C object src/libshell-14.so.p/shell-global.c.o
[249/284] Compiling C object src/libshell-14.so.p/shell-screenshot.c.o
[250/284] Compiling C object src/libshell-14.so.p/shell-stack.c.o
[251/284] Compiling C object src/libshell-14.so.p/shell-tray-icon.c.o
[252/284] Compiling C object src/libshell-14.so.p/shell-util.c.o
[253/284] Compiling C object src/libshell-14.so.p/shell-window-preview.c.o
[254/284] Compiling C object src/libshell-14.so.p/shell-window-tracker.c.o
[255/284] Compiling C object src/libshell-14.so.p/shell-app-cache.c.o
[256/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-create.c.o
[257/284] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-pack.c.o
[258/284] Compiling C object src/gnome-shell-perf-helper.p/meson-generated_.._.._js_js-resources.c.o
[259/284] Compiling C object src/gnome-shell-perf-helper.p/shell-perf-helper.c.o
[260/284] Merging translations for data/org.gnome.Shell.desktop
[261/284] Merging translations for data/org.gnome.Shell.Extensions.desktop
[262/284] Merging translations for data/org.gnome.Shell.PortalHelper.desktop
[263/284] Generating data/gnome-shell-dbus-interfaces_gresource with a custom command
[264/284] Generating data/gnome-shell-icons_gresource with a custom command
[265/284] Linking target src/gnome-shell-portal-helper
[266/284] Generating subprojects/shew/src/Shew-0.gir with a custom command (wrapped by meson to set env)
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:198: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:220: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:223: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:231: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected ')', expecting identifier or '(' in '# 807 "/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h"' at ')'
[267/284] Linking target src/st/libst-14.so
[268/284] Linking target subprojects/gvc/libgvc.so
[269/284] Linking target subprojects/extensions-tool/src/gnome-extensions
[270/284] Linking target src/gnome-shell-perf-helper
[271/284] Generating symbol file src/st/libst-14.so.p/libst-14.so.symbols
[272/284] Generating subprojects/shew/src/Shew-0.typelib with a custom command
[273/284] Linking target src/libshell-14.so
[274/284] Generating symbol file src/libshell-14.so.p/libshell-14.so.symbols
[275/284] Linking target src/run-js-test
[276/284] Linking target src/gnome-shell
[277/284] Generating subprojects/gvc/Gvc-1.0.gir with a custom command (wrapped by meson to set env)
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:198: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:220: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:223: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:231: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected ')', expecting identifier or '(' in '# 807 "/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h"' at ')'
[278/284] Generating subprojects/gvc/Gvc-1.0.typelib with a custom command
[279/284] Generating src/st/St-14.gir with a custom command (wrapped by meson to set env)
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:198: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:220: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:223: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:231: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected ')', expecting identifier or '(' in '# 807 "/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h"' at ')'
[280/284] Generating src/st/St-14.typelib with a custom command
[281/284] Generating src/Shell-14.gir with a custom command (wrapped by meson to set env)
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:198: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:220: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:223: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:231: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:234: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:804: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/nix/store/6R6RZV2V3X8MH2KI391GVC9Y9954YZLG-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h", 804, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h:807: syntax error, unexpected ')', expecting identifier or '(' in '# 807 "/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gobject.h"' at ')'
[282/284] Generating src/Shell-14.typelib with a custom command
[283/284] Generating docs/reference/st/st-doc with a custom command
[284/284] Generating docs/reference/shell/shell-doc with a custom command
buildPhase completed in 1 minutes 3 seconds
Running phase: glibPreInstallPhase
@nix { "action": "setPhase", "phase": "glibPreInstallPhase" }
Running phase: glibPreInstallPhase
@nix { "action": "setPhase", "phase": "glibPreInstallPhase" }
Running phase: glibPreInstallPhase
@nix { "action": "setPhase", "phase": "glibPreInstallPhase" }
Running phase: installPhase
@nix { "action": "setPhase", "phase": "installPhase" }
mesonInstallPhase flags: ''
Installing subdir /build/gnome-shell-46.4/subprojects/extensions-app/data/icons/hicolor to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor
Installing /build/gnome-shell-46.4/subprojects/extensions-app/data/icons/hicolor/scalable/apps/org.gnome.Extensions.svg to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor/scalable/apps
Installing /build/gnome-shell-46.4/subprojects/extensions-app/data/icons/hicolor/scalable/apps/org.gnome.Extensions.Devel.svg to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor/scalable/apps
Installing /build/gnome-shell-46.4/subprojects/extensions-app/data/icons/hicolor/symbolic/apps/org.gnome.Extensions-symbolic.svg to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor/symbolic/apps
Installing subdir /build/gnome-shell-46.4/data/icons/hicolor to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor
Installing /build/gnome-shell-46.4/data/icons/hicolor/scalable/apps/org.gnome.Shell.Extensions.svg to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor/scalable/apps
Installing /build/gnome-shell-46.4/data/icons/hicolor/symbolic/apps/org.gnome.Shell.Extensions-symbolic.svg to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/icons/hicolor/symbolic/apps
Installing man/gnome-shell.1 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/man/man1
Installing subprojects/gvc/libgvc.so to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing subprojects/gvc/Gvc-1.0.gir to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing subprojects/gvc/Gvc-1.0.typelib to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing subprojects/shew/src/libshew-0.so to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing subprojects/shew/src/Shew-0.gir to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell/gir-1.0
Installing subprojects/shew/src/Shew-0.typelib to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell/girepository-1.0
Installing subprojects/extensions-tool/src/gnome-extensions to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/bin
Installing subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/metainfo
Installing subprojects/extensions-app/data/org.gnome.Extensions.data.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing subprojects/extensions-app/data/org.gnome.Extensions.desktop to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/applications
Installing subprojects/extensions-app/js/org.gnome.Extensions.src.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Extensions.src.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Notifications.src.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Screencast.src.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing js/dbusServices/org.gnome.ScreenSaver.src.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing src/calendar-server/gnome-shell-calendar-server to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec
Installing src/hotplug-sniffer/gnome-shell-hotplug-sniffer to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec
Installing src/st/libst-14.so to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing src/st/St-14.gir to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing src/st/St-14.typelib to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing src/libgnome-shell-menu.so to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing src/libshell-14.so to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing src/Shell-14.gir to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing src/Shell-14.typelib to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/lib/gnome-shell
Installing src/gnome-shell to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/bin
Installing src/gnome-shell-portal-helper to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec
Installing src/gnome-shell-perf-helper to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/libexec
Installing po/ab/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ab/LC_MESSAGES
Installing po/af/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/af/LC_MESSAGES
Installing po/an/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/an/LC_MESSAGES
Installing po/ar/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ar/LC_MESSAGES
Installing po/as/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/as/LC_MESSAGES
Installing po/ast/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ast/LC_MESSAGES
Installing po/be/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/be/LC_MESSAGES
Installing po/bg/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/bg/LC_MESSAGES
Installing po/bn/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/bn/LC_MESSAGES
Installing po/bn_IN/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/bn_IN/LC_MESSAGES
Installing po/bs/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/bs/LC_MESSAGES
Installing po/ca/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ca/LC_MESSAGES
Installing po/ca@valencia/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ca@valencia/LC_MESSAGES
Installing po/ckb/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ckb/LC_MESSAGES
Installing po/cs/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/cs/LC_MESSAGES
Installing po/da/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/da/LC_MESSAGES
Installing po/de/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/de/LC_MESSAGES
Installing po/el/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/el/LC_MESSAGES
Installing po/en_GB/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/en_GB/LC_MESSAGES
Installing po/eo/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/eo/LC_MESSAGES
Installing po/es/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/es/LC_MESSAGES
Installing po/et/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/et/LC_MESSAGES
Installing po/eu/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/eu/LC_MESSAGES
Installing po/fa/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/fa/LC_MESSAGES
Installing po/fi/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/fi/LC_MESSAGES
Installing po/fr/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/fr/LC_MESSAGES
Installing po/fur/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/fur/LC_MESSAGES
Installing po/fy/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/fy/LC_MESSAGES
Installing po/ga/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ga/LC_MESSAGES
Installing po/gd/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/gd/LC_MESSAGES
Installing po/gl/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/gl/LC_MESSAGES
Installing po/gu/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/gu/LC_MESSAGES
Installing po/he/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/he/LC_MESSAGES
Installing po/hi/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/hi/LC_MESSAGES
Installing po/hr/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/hr/LC_MESSAGES
Installing po/hu/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/hu/LC_MESSAGES
Installing po/ia/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ia/LC_MESSAGES
Installing po/id/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/id/LC_MESSAGES
Installing po/ie/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ie/LC_MESSAGES
Installing po/is/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/is/LC_MESSAGES
Installing po/it/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/it/LC_MESSAGES
Installing po/ja/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ja/LC_MESSAGES
Installing po/ka/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ka/LC_MESSAGES
Installing po/kab/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/kab/LC_MESSAGES
Installing po/kk/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/kk/LC_MESSAGES
Installing po/km/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/km/LC_MESSAGES
Installing po/kn/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/kn/LC_MESSAGES
Installing po/ko/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ko/LC_MESSAGES
Installing po/ku/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ku/LC_MESSAGES
Installing po/ky/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ky/LC_MESSAGES
Installing po/lt/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/lt/LC_MESSAGES
Installing po/lv/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/lv/LC_MESSAGES
Installing po/mjw/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/mjw/LC_MESSAGES
Installing po/mk/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/mk/LC_MESSAGES
Installing po/ml/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ml/LC_MESSAGES
Installing po/mr/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/mr/LC_MESSAGES
Installing po/ms/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ms/LC_MESSAGES
Installing po/nb/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/nb/LC_MESSAGES
Installing po/ne/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ne/LC_MESSAGES
Installing po/nl/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/nl/LC_MESSAGES
Installing po/nn/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/nn/LC_MESSAGES
Installing po/oc/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/oc/LC_MESSAGES
Installing po/or/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/or/LC_MESSAGES
Installing po/os/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/os/LC_MESSAGES
Installing po/pa/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/pa/LC_MESSAGES
Installing po/pl/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/pl/LC_MESSAGES
Installing po/pt/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/pt/LC_MESSAGES
Installing po/pt_BR/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/pt_BR/LC_MESSAGES
Installing po/ro/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ro/LC_MESSAGES
Installing po/ru/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ru/LC_MESSAGES
Installing po/si/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/si/LC_MESSAGES
Installing po/sk/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/sk/LC_MESSAGES
Installing po/sl/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/sl/LC_MESSAGES
Installing po/sr/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/sr/LC_MESSAGES
Installing po/sr@latin/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/sr@latin/LC_MESSAGES
Installing po/sv/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/sv/LC_MESSAGES
Installing po/ta/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ta/LC_MESSAGES
Installing po/te/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/te/LC_MESSAGES
Installing po/tg/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/tg/LC_MESSAGES
Installing po/th/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/th/LC_MESSAGES
Installing po/tr/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/tr/LC_MESSAGES
Installing po/ug/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/ug/LC_MESSAGES
Installing po/uk/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/uk/LC_MESSAGES
Installing po/uz@cyrillic/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/uz@cyrillic/LC_MESSAGES
Installing po/vi/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/vi/LC_MESSAGES
Installing po/zh_CN/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/zh_CN/LC_MESSAGES
Installing po/zh_HK/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/zh_HK/LC_MESSAGES
Installing po/zh_TW/LC_MESSAGES/gnome-shell.mo to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/locale/zh_TW/LC_MESSAGES
Installing data/org.gnome.Shell.desktop to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/applications
Installing data/org.gnome.Shell.Extensions.desktop to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/applications
Installing data/org.gnome.Shell.PortalHelper.desktop to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/applications
Installing data/gnome-shell-dbus-interfaces.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing data/gnome-shell-icons.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing data/gnome-shell-osk-layouts.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing data/gnome-shell-theme.gresource to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/gnome-shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_stop_systemd_unit.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.AppSystem.lookup_heuristic_basename.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.dump_log.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.GLSLEffect.add_glsl_snippet.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Regular.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.BlurEffect.get_mode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.frame-timestamps.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.TrayManager.unmanage_screen.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.KeyringPrompt.warning-visible.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Bold.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.WorkspaceBackground.monitor-index.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.PerfLog.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_n_windows.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_regex_escape.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Medium.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.update_statistic_i.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.Screenshot.composite_to_stream_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot_window.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WM.completed_size_change.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_spawn_async_with_pipes_and_fds.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.Screenshot.composite_to_stream.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.KeyringPrompt.password-visible.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/go-up-symbolic.png to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_icon.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_touch_file_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.MountOperation.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.BlurEffect.brightness.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.add_statistics_callback.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.hide-tile-preview.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.set_persistent_state.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.Global.get.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.update_app_actions.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/shell.devhelp2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.is_window_backed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.TrayManager.tray-icon-added.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.PolkitAuthenticationAgent.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_busy.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.KeyringPrompt.get_password_actor.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.top-window-group.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/solarized-light.css to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.create_icon_texture.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.replay.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.NetworkAgent.new-request.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.GLSLEffect.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_window_tracker.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Bold.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/callback.LeisureFunction.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-MediumItalic.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.focus-manager.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.CameraMonitor.cameras-in-use.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Regular.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.NetworkAgent.cancel-request.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.Screenshot.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-BoldItalic.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_sd_notify.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.kill-window-effects.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.BlurEffect.set_mode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_window_actors.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.context.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_create_pixbuf_from_data.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.Global.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Medium.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/fonts.css to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.activate.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.TrayIcon.pid.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.workspace-manager.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WindowTracker.startup-sequence-changed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.Global.locate-pointer.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.AppSystem.lookup_app.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/SourceCodePro-Semibold.ttf.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.SecureTextBuffer.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.WindowTracker.focus-app.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot_area.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/index.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_check_cloexec_fds.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.switcheroo-control.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_current_time.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.WindowTracker.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.MountOperation.get_show_processes_message.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.stage.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.WindowPreview.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/enum.SnippetHook.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/solarized-dark.css to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Bold.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/enum.AppState.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.MountOperation.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.MountOperation.show-processes-2.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.create_app_launch_context.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.activate_window.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.request_quit.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.TrayIcon.click.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.kill-switch-workspace.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WM.completed_map.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.KeyringPrompt.get_confirm_actor.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.PolkitAuthenticationAgent.cancel.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.GLSLEffect.set_uniform_matrix.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.InvertLightnessEffect.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.BlurEffect.mode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PolkitAuthenticationAgent.register.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.PolkitAuthenticationAgent.initiate.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.App.action-group.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.switch-workspace.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.AppSystem.get_running.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.BlurEffect.set_radius.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/SourceCodePro-Regular.ttf.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.BlurEffect.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.set_stage_input_region.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Bold.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.MountOperation.get_show_processes_pids.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/urlmap.js to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.App.app-info.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.KeyringPrompt.choice-visible.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.event_i.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_start_systemd_unit.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.update_statistic_x.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.AppSystem.get_installed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.create-inhibit-shortcuts-dialog.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-MediumItalic.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/search.js to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_set_hidden_from_pick.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.NetworkAgent.set_password.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.size-change.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.session-mode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.show-window-menu.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.write_string_to_stream.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.TrayManager.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_wifexited.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Italic.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.automation-script.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.App.windows-changed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.backend.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_state.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.force-animations.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WindowTracker.tracked-windows-changed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.WindowPreview.window-container.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.run_at_leisure.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.open_new_window.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.App.icon.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Medium.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Italic.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.BlurEffect.radius.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.WorkspaceBackground.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_id.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.screen-width.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.PolkitAuthenticationAgent.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/enum.AppLaunchGpu.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.NetworkAgent.search_vpn_plugin.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/vfunc.GLSLEffect.build_pipeline.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.compare_by_name.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.KeyringPrompt.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.App.id.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.define_statistic.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_pointer.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Black.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.WorkspaceBackground.state-adjustment-value.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.window-manager.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.event_x.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/index.json to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.util_stop_systemd_unit_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.PerfLog.get_default.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PolkitAuthenticationAgent.unregister.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.AppSystem.app-state-changed.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.NetworkAgent.search_vpn_plugin_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WM.completed_switch_workspace.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.App.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.KeyringPrompt.show-confirm.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-BoldItalic.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.WindowPreviewLayout.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/style.css to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.KeyringPrompt.show-password.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.NetworkAgent.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.AppUsage.get_default.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_app_info.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.TrayIcon.wm-class.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.destroy.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.set_runtime_state.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.SquareBin.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.minimize.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_persistent_state.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot_area_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/enum.BlurMode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_app_system.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Medium.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot_stage_to_content.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.get_description.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.AppUsage.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.event_s.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.event.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/func.get_file_contents_utf8_sync.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-Regular.woff2 to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/callback.PerfReplayFunction.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.begin_work.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.unminimize.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-MediumItalic.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.userdatadir.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-MediumItalic.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatDisplay-Black.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.filter-keybinding.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.WindowTracker.get_default.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_session_mode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.is_on_workspace.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.datadir.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.collect_statistics.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.set_enabled.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WindowTracker.get_startup_sequences.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.map.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.reexec_self.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.Screenshot.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.App.launch_action.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.App.state.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.imagedir.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WindowTracker.get_app_from_pid.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/class.Stack.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/RedHatText-BoldItalic.woff to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.BlurEffect.get_radius.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/const.KEYRING_SN_TAG.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.GLSLEffect.set_uniform_float.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.pick_color_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/signal.WM.show-tile-preview.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.display.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.screenshot_stage_to_content_finish.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.WindowPreviewLayout.remove_window.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.PerfLog.dump_events.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_display.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/flags.ActionMode.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_switcheroo_control.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.KeyringPrompt.confirm-actor.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Screenshot.pick_color.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.NetworkAgent.respond.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/method.Global.get_settings.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/ctor.TrayManager.new.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/property.Global.compositor.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell
Installing /build/gnome-shell-46.4/build/docs/reference/shell/shell/type_func.AppSystem.get_default.html to /nix/store/vr7rnfxp5whiq3kixkgh8qh5yss2p8hv-gnome-shell-46.4/share/doc/shell