summary refs log tree commit diff
path: root/pkgs/applications/window-managers/way-cooler/way-cooler.nix
blob: 816a1c887089b1b0b82adafbce19889b8b4bece1 (plain) (blame)
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
# Generated by carnix 0.5.0: carnix -o way-cooler.nix Cargo.lock
{ lib, buildPlatform, buildRustCrate, fetchgit }:
let kernel = buildPlatform.parsed.kernel.name;
    abi = buildPlatform.parsed.abi.name;
    hasFeature = feature:
      lib.lists.any
        (originName: feature.${originName})
        (builtins.attrNames feature);

    hasDefault = feature:
      let defaultFeatures = builtins.attrNames (feature."default" or {}); in
      (defaultFeatures == [])
      || (lib.lists.any (originName: feature."default".${originName}) defaultFeatures);

    mkFeatures = feat: lib.lists.foldl (features: featureName:
      if featureName != "" && hasFeature feat.${featureName} then
        [ featureName ] ++ features
      else
        features
    ) (if hasDefault feat then [ "default" ] else []) (builtins.attrNames feat);
    aho_corasick_0_5_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "aho-corasick";
      version = "0.5.3";
      authors = [ "Andrew Gallant <jamslam@gmail.com>" ];
      sha256 = "1igab46mvgknga3sxkqc917yfff0wsjxjzabdigmh240p5qxqlnn";
      libName = "aho_corasick";
      crateBin = [ {  name = "aho-corasick-dot"; } ];
      inherit dependencies buildDependencies features;
    };
    bitflags_0_4_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "bitflags";
      version = "0.4.0";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0an03kibhfcc0mcxf6a0mvbab0s7cggnvflw8jn0b15i351h828c";
      inherit dependencies buildDependencies features;
    };
    bitflags_0_5_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "bitflags";
      version = "0.5.0";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0bgw1kiy121kikjrwj6zsd7l8n1gg1jirivzkc7zpjsvqa3p0hla";
      inherit dependencies buildDependencies features;
    };
    bitflags_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "bitflags";
      version = "0.6.0";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1znq4b770mdp3kdj9yz199ylc2pmf8l5j2f281jjrcfhg1mm22h6";
      inherit dependencies buildDependencies features;
    };
    bitflags_0_7_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "bitflags";
      version = "0.7.0";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1hr72xg5slm0z4pxs2hiy4wcyx3jva70h58b7mid8l0a4c8f7gn5";
      inherit dependencies buildDependencies features;
    };
    bitflags_0_8_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "bitflags";
      version = "0.8.2";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0whaj3969ysqxzk620sk1isvq6vh85516f2fplvqjrw3syz44sb2";
      inherit dependencies buildDependencies features;
    };
    c_vec_1_2_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "c_vec";
      version = "1.2.1";
      authors = [ "Guillaume Gomez <guillaume1.gomez@gmail.com>" ];
      sha256 = "15gm72wx9kd0n51454i58rmpkmig8swghrj2440frxxi9kqg97xd";
      inherit dependencies buildDependencies features;
    };
    cairo_rs_0_1_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "cairo-rs";
      version = "0.1.3";
      authors = [ "The Gtk-rs Project Developers" ];
      sha256 = "17wp5wh1jvn2ny8s6fckvbwn0x8ixha6xrqas1bqxd9ygm5g58w1";
      libName = "cairo";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    cairo_sys_rs_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "cairo-sys-rs";
      version = "0.3.4";
      authors = [ "The Gtk-rs Project Developers" ];
      sha256 = "1fzxshv7vysnnc2nywla6gj3hh00nr6cz1ak0mrxkg65rzrgxkww";
      libName = "cairo_sys";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    cfg_if_0_1_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "cfg-if";
      version = "0.1.0";
      authors = [ "Alex Crichton <alex@alexcrichton.com>" ];
      sha256 = "1grr9v6ijms84cvl1jqv5hp9clw9gn3l3g6kj9a31sdzvidd6v29";
      inherit dependencies buildDependencies features;
    };
    dbus_0_4_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "dbus";
      version = "0.4.1";
      authors = [ "David Henningsson <diwic@ubuntu.com>" ];
      sha256 = "0qw32qj2rys318h780klxlznkwg93dfimbn8mc34m4940l8v00g9";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    dbus_macros_0_0_6_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "dbus-macros";
      version = "0.0.6";
      authors = [ "Antoni Boucher <bouanto@zoho.com>" ];
      sha256 = "1nymk2hzzgyafyr5nfa4r4frx4hml3wlwgzfr9b69vmcvn3d2jyd";
      inherit dependencies buildDependencies features;
    };
    dlib_0_3_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "dlib";
      version = "0.3.1";
      authors = [ "Victor Berger <victor.berger@m4x.org>" ];
      sha256 = "11mhh6g9vszp2ay3r46x4capnnmvvhx5hcp74bapxjhiixqjfvkr";
      inherit dependencies buildDependencies features;
    };
    dtoa_0_4_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "dtoa";
      version = "0.4.1";
      authors = [ "David Tolnay <dtolnay@gmail.com>" ];
      sha256 = "0mgg4r90yby68qg7y8csbclhsm53ac26vsyq615viq535plllhzw";
      inherit dependencies buildDependencies features;
    };
    dummy_rustwlc_0_6_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "dummy-rustwlc";
      version = "0.6.3";
      authors = [ "Snirk Immington <snirk.immington@gmail.com>" "Preston Carpenter <APragmaticPlace@gmail.com>" ];
      sha256 = "09pcl2r3ifajgq794j4jqaq0n4kyb2z4aaavs1fr78w4fhrzqqmj";
      inherit dependencies buildDependencies features;
    };
    env_logger_0_3_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "env_logger";
      version = "0.3.5";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1mvxiaaqsyjliv1mm1qaagjqiccw11mdyi3n9h9rf8y6wj15zycw";
      inherit dependencies buildDependencies features;
    };
    fixedbitset_0_1_6_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "fixedbitset";
      version = "0.1.6";
      authors = [ "bluss" ];
      sha256 = "1jcq0i41l888153v4jyb6q2kc9sjs004md5byfz5mprlmhdawha3";
      inherit dependencies buildDependencies features;
    };
    gcc_0_3_46_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "gcc";
      version = "0.3.46";
      authors = [ "Alex Crichton <alex@alexcrichton.com>" ];
      sha256 = "17rbdxa2yapjymbdq7b930sc1ipiwhx4xz7hh48q4bz3d28zg6qb";
      inherit dependencies buildDependencies features;
    };
    getopts_0_2_14_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "getopts";
      version = "0.2.14";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1wdz34vls97g9868h8kiw4wmwkbyxg4xm3xzvr1542hc3w4c7z0a";
      inherit dependencies buildDependencies features;
    };
    glib_0_1_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "glib";
      version = "0.1.3";
      authors = [ "The Gtk-rs Project Developers" ];
      sha256 = "1j2zwsnxlfdrj8wdi8yp3zl5l9nydsifgxspnwl6ijq3ywnjhcpa";
      inherit dependencies buildDependencies features;
    };
    glib_sys_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "glib-sys";
      version = "0.3.4";
      authors = [ "The Gtk-rs Project Developers" ];
      sha256 = "06ymp4ljrjnb7cly0bixy3svxgnwpbx79499889dqakpfs7566rc";
      libName = "glib_sys";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    gobject_sys_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "gobject-sys";
      version = "0.3.4";
      authors = [ "The Gtk-rs Project Developers" ];
      sha256 = "0rrk3c94myhspyl3iq7k4kcm72zxl8bk3r7kvqv2f9lf6y820giw";
      libName = "gobject_sys";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    hlua_0_1_9_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "hlua";
      version = "0.1.9";
      authors = [ "pierre.krieger1708@gmail.com" ];
      sha256 = "1vn7w1rcaj9g04yx5jak09a3wpw7g3yx2fgn8ibx36z07vpf57fs";
      inherit dependencies buildDependencies features;
    };
    itoa_0_3_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "itoa";
      version = "0.3.1";
      authors = [ "David Tolnay <dtolnay@gmail.com>" ];
      sha256 = "0jp1wvfw0qqbyz0whbycp7xr5nx1ds5plh4wsfyj503xmjf9ab4k";
      inherit dependencies buildDependencies features;
    };
    json_macro_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "json_macro";
      version = "0.1.1";
      authors = [ "Denis Kolodin <deniskolodin@gmail.com>" ];
      sha256 = "0hl2934shpwqbszrq035valbdz9y8p7dza183brygy5dbvivcyqy";
      inherit dependencies buildDependencies features;
    };
    kernel32_sys_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "kernel32-sys";
      version = "0.2.2";
      authors = [ "Peter Atashian <retep998@gmail.com>" ];
      sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj";
      libName = "kernel32";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    lazy_static_0_2_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "lazy_static";
      version = "0.2.8";
      authors = [ "Marvin Löbel <loebel.marvin@gmail.com>" ];
      sha256 = "1xbpxx7cd5kl60g87g43q80jxyrsildhxfjc42jb1x4jncknpwbl";
      inherit dependencies buildDependencies features;
    };
    libc_0_2_23_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "libc";
      version = "0.2.23";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1i29f6k26fmv81c5bjc6hw2j95sd01h9ad66qxdc755b24xfa9jm";
      inherit dependencies buildDependencies features;
    };
    libloading_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "libloading";
      version = "0.3.4";
      authors = [ "Simonas Kazlauskas <libloading@kazlauskas.me>" ];
      sha256 = "1f2vy32cr434n638nv8sdf05iwa53q9q5ahlcpw1l9ywh1bcbhf1";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    log_0_3_7_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "log";
      version = "0.3.7";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1qxrwkhpfzhgcmfnw4bl9yy7wwr92wwbin3dp6izcfy58lr369v4";
      inherit dependencies buildDependencies features;
    };
    lua52_sys_0_0_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "lua52-sys";
      version = "0.0.4";
      authors = [ "Pierre Krieger <pierre.krieger1708@gmail.com>" ];
      sha256 = "115i7k2dnnf4c1b2mxwf5mvqv2wsqmmxm3krphf5wjky20gi2ciz";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    memchr_0_1_11_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "memchr";
      version = "0.1.11";
      authors = [ "Andrew Gallant <jamslam@gmail.com>" "bluss" ];
      sha256 = "0x73jghamvxxq5fsw9wb0shk5m6qp3q6fsf0nibn0i6bbqkw91s8";
      inherit dependencies buildDependencies features;
    };
    nix_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "nix";
      version = "0.6.0";
      authors = [ "Carl Lerche <me@carllerche.com>" ];
      sha256 = "1bgh75y897isnxbw3vd79vns9h6q4d59p1cgv9c4laysyw6fkqwf";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    nix_0_8_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "nix";
      version = "0.8.1";
      authors = [ "The nix-rust Project Developers" ];
      sha256 = "0iqmn55ajwcq91pl8xviwdvc2zrkaccajsp0nc9lbq9ydli0vhf9";
      inherit dependencies buildDependencies features;
    };
    num_traits_0_1_37_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "num-traits";
      version = "0.1.37";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0rwzfmdjq6iz6plva2gi7agvy1w9sjs7aqjh0p115w57xiix2224";
      inherit dependencies buildDependencies features;
    };
    ordermap_0_2_10_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "ordermap";
      version = "0.2.10";
      authors = [ "bluss" ];
      sha256 = "1pj6d56nwi0wa7cnwl80dwz13vws9nf5s1b7k7i2dav35gkpwy1z";
      inherit dependencies buildDependencies features;
    };
    petgraph_0_4_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "petgraph";
      version = "0.4.5";
      authors = [ "bluss" "mitchmindtree" ];
      sha256 = "0482id2flwnxkhj1443g384cvk7f9lva9n6wj2wsag9145zhpjzg";
      inherit dependencies buildDependencies features;
    };
    phf_0_7_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "phf";
      version = "0.7.21";
      authors = [ "Steven Fackler <sfackler@gmail.com>" ];
      sha256 = "11m2rzm2s8s35m0s97gjxxb181xz352kjlhr387xj5c8q3qp5afg";
      libPath = "src/lib.rs";
      inherit dependencies buildDependencies features;
    };
    phf_codegen_0_7_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "phf_codegen";
      version = "0.7.21";
      authors = [ "Steven Fackler <sfackler@gmail.com>" ];
      sha256 = "0kgy8s2q4zr0iqcm21mgq4ppc45wy6z7b5wn98xyfsrcad6lwmmj";
      inherit dependencies buildDependencies features;
    };
    phf_generator_0_7_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "phf_generator";
      version = "0.7.21";
      authors = [ "Steven Fackler <sfackler@gmail.com>" ];
      sha256 = "1jxjfzc6d6d4l9nv0r2bb66if5brk9lnncmg4dpjjifn6zhhqd9g";
      inherit dependencies buildDependencies features;
    };
    phf_shared_0_7_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "phf_shared";
      version = "0.7.21";
      authors = [ "Steven Fackler <sfackler@gmail.com>" ];
      sha256 = "0lxpg3wgxfhzfalmf9ha9my1lsvfjy74ah9f6mfw88xlp545jlln";
      libPath = "src/lib.rs";
      inherit dependencies buildDependencies features;
    };
    pkg_config_0_3_9_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "pkg-config";
      version = "0.3.9";
      authors = [ "Alex Crichton <alex@alexcrichton.com>" ];
      sha256 = "06k8fxgrsrxj8mjpjcq1n7mn2p1shpxif4zg9y5h09c7vy20s146";
      inherit dependencies buildDependencies features;
    };
    rand_0_3_15_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "rand";
      version = "0.3.15";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1fs30rc1xic40s1n7l3y7pxzfifpy03mgrvhy5ggp5p7zjfv3rr8";
      inherit dependencies buildDependencies features;
    };
    regex_0_1_80_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "regex";
      version = "0.1.80";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0y4s8ghhx6sgzb35irwivm3w0l2hhqhmdcd2px9hirqnkagal9l6";
      inherit dependencies buildDependencies features;
    };
    regex_syntax_0_3_9_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "regex-syntax";
      version = "0.3.9";
      authors = [ "The Rust Project Developers" ];
      sha256 = "1mzhphkbwppwd1zam2jkgjk550cqgf6506i87bw2yzrvcsraiw7m";
      inherit dependencies buildDependencies features;
    };
    rustc_serialize_0_3_24_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "rustc-serialize";
      version = "0.3.24";
      authors = [ "The Rust Project Developers" ];
      sha256 = "0rfk6p66mqkd3g36l0ddlv2rvnp1mp3lrq5frq9zz5cbnz5pmmxn";
      inherit dependencies buildDependencies features;
    };
    rustc_version_0_1_7_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "rustc_version";
      version = "0.1.7";
      authors = [ "Marvin Löbel <loebel.marvin@gmail.com>" ];
      sha256 = "0plm9pbyvcwfibd0kbhzil9xmr1bvqi8fgwlfw0x4vali8s6s99p";
      inherit dependencies buildDependencies features;
    };
    rustwlc_0_6_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "rustwlc";
      version = "0.6.2";
      authors = [ "Snirk Immington <snirk.immington@gmail.com>" "Timidger <apragmaticplace@gmail.com>" ];
      sha256 = "16k8wzyvn1syxcjimy2vh7hc6jlbw31v03ysrzrqgfwncmwx5b2d";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    semver_0_1_20_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "semver";
      version = "0.1.20";
      authors = [ "The Rust Project Developers" ];
      sha256 = "05cdig0071hls2k8lxbqmyqpl0zjmc53i2d43mwzps033b8njh4n";
      inherit dependencies buildDependencies features;
    };
    serde_0_9_15_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "serde";
      version = "0.9.15";
      authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" ];
      sha256 = "0rlflkc57kvy69hnhj4arfsj7ic4hpihxsb00zg5lkdxfj5qjx9b";
      inherit dependencies buildDependencies features;
    };
    serde_json_0_9_10_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "serde_json";
      version = "0.9.10";
      authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" ];
      sha256 = "0g6bxlfnvf2miicnsizyrxm686rfval6gbss1i2qcna8msfwc005";
      inherit dependencies buildDependencies features;
    };
    siphasher_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "siphasher";
      version = "0.2.2";
      authors = [ "Frank Denis <github@pureftpd.org>" ];
      sha256 = "0iyx7nlzfny9ly1634a6zcq0yvrinhxhypwas4p8ry3zqnn76qqr";
      inherit dependencies buildDependencies features;
    };
    target_build_utils_0_3_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "target_build_utils";
      version = "0.3.1";
      authors = [ "Simonas Kazlauskas <target_build_utils@kazlauskas.me>" ];
      sha256 = "1b450nyxlbgicp2p45mhxiv6yv0z7s4iw01lsaqh3v7b4bm53flj";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    thread_id_2_0_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "thread-id";
      version = "2.0.0";
      authors = [ "Ruud van Asseldonk <dev@veniogames.com>" ];
      sha256 = "06i3c8ckn97i5rp16civ2vpqbknlkx66dkrl070iw60nawi0kjc3";
      inherit dependencies buildDependencies features;
    };
    thread_local_0_2_7_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "thread_local";
      version = "0.2.7";
      authors = [ "Amanieu d'Antras <amanieu@gmail.com>" ];
      sha256 = "19p0zrs24rdwjvpi10jig5ms3sxj00pv8shkr9cpddri8cdghqp7";
      inherit dependencies buildDependencies features;
    };
    utf8_ranges_0_1_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "utf8-ranges";
      version = "0.1.3";
      authors = [ "Andrew Gallant <jamslam@gmail.com>" ];
      sha256 = "1cj548a91a93j8375p78qikaiam548xh84cb0ck8y119adbmsvbp";
      inherit dependencies buildDependencies features;
    };
    uuid_0_3_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "uuid";
      version = "0.3.1";
      authors = [ "The Rust Project Developers" ];
      sha256 = "16ak1c84dfkd8h33cvkxrkvc30k7b0bhrnza8ni2c0jsx85fpbip";
      inherit dependencies buildDependencies features;
    };
    void_1_0_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "void";
      version = "1.0.2";
      authors = [ "Jonathan Reem <jonathan.reem@gmail.com>" ];
      sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3";
      inherit dependencies buildDependencies features;
    };
    way_cooler_0_6_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "way-cooler";
      version = "0.6.2";
      authors = [ "Snirk Immington <snirk.immington@gmail.com>" "Timidger <apragmaticplace@gmail.com>" ];
      sha256 = "0ygzgjjhf54fcpk6sbi0acbyki4ff1v7wyckfk4lhv4ycpg9v3cj";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    wayland_scanner_0_9_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "wayland-scanner";
      version = "0.9.4";
      authors = [ "Victor Berger <victor.berger@m4x.org>" ];
      sha256 = "1kdhpm1gkn99sj8vxhyr1x6nxnhm0cjvypajycvn2fa9sdpgw8yc";
      inherit dependencies buildDependencies features;
    };
    wayland_server_0_9_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "wayland-server";
      version = "0.9.4";
      authors = [ "Victor Berger <victor.berger@m4x.org>" ];
      sha256 = "1aqidrac0z7ny65yhfv9inl3xmdmph21yhmyd3k0nafyghgg9pxw";
      build = "build.rs";
      inherit dependencies buildDependencies features;
    };
    wayland_sys_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "wayland-sys";
      version = "0.6.0";
      authors = [ "Victor Berger <victor.berger@m4x.org>" ];
      sha256 = "0m6db0kld2d4xv4ai9kxlqrh362hwi0030b4zbss0sfha1hx5mfl";
      inherit dependencies buildDependencies features;
    };
    wayland_sys_0_9_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "wayland-sys";
      version = "0.9.4";
      authors = [ "Victor Berger <victor.berger@m4x.org>" ];
      sha256 = "0vqrc46ib5hgbq6djghapairbjskdncas09k680f7pwylbi7yzcj";
      inherit dependencies buildDependencies features;
    };
    winapi_0_2_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "winapi";
      version = "0.2.8";
      authors = [ "Peter Atashian <retep998@gmail.com>" ];
      sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as";
      inherit dependencies buildDependencies features;
    };
    winapi_build_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "winapi-build";
      version = "0.1.1";
      authors = [ "Peter Atashian <retep998@gmail.com>" ];
      sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga";
      libName = "build";
      inherit dependencies buildDependencies features;
    };
    xml_rs_0_3_6_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate {
      crateName = "xml-rs";
      version = "0.3.6";
      authors = [ "Vladimir Matveev <vladimir.matweev@gmail.com>" ];
      sha256 = "1g1cclib7fj900m4669vxlz45lxcq0m36g7cd8chl494c2xsgj15";
      libPath = "src/lib.rs";
      libName = "xml";
      crateBin = [ {  name = "xml-analyze";  path = "src/analyze.rs"; } ];
      inherit dependencies buildDependencies features;
    };

in
rec {
  aho_corasick_0_5_3 = aho_corasick_0_5_3_ rec {
    dependencies = [ memchr_0_1_11 ];
  };
  memchr_0_1_11_features."default".from_aho_corasick_0_5_3__default = true;
  bitflags_0_4_0 = bitflags_0_4_0_ rec {
    features = mkFeatures bitflags_0_4_0_features;
  };
  bitflags_0_4_0_features."".self = true;
  bitflags_0_5_0 = bitflags_0_5_0_ rec {
    features = mkFeatures bitflags_0_5_0_features;
  };
  bitflags_0_5_0_features."".self = true;
  bitflags_0_6_0 = bitflags_0_6_0_ rec {};
  bitflags_0_7_0 = bitflags_0_7_0_ rec {};
  bitflags_0_8_2 = bitflags_0_8_2_ rec {
    features = mkFeatures bitflags_0_8_2_features;
  };
  bitflags_0_8_2_features."i128".self_unstable = hasFeature (bitflags_0_8_2_features."unstable" or {});
  c_vec_1_2_1 = c_vec_1_2_1_ rec {};
  cairo_rs_0_1_3 = cairo_rs_0_1_3_ rec {
    dependencies = [ c_vec_1_2_1 cairo_sys_rs_0_3_4 glib_0_1_3 libc_0_2_23 ]
      ++ (if lib.lists.any (x: x == "glib") features then [glib_0_1_3] else [])
      ++ (if kernel == "windows" then [ winapi_0_2_8 ] else []);
    buildDependencies = [];
    features = mkFeatures cairo_rs_0_1_3_features;
  };
  cairo_rs_0_1_3_features."".self = true;
  cairo_rs_0_1_3_features."glib".self_default = hasDefault cairo_rs_0_1_3_features;
  cairo_rs_0_1_3_features."gtk-rs-lgpl-docs".self_embed-lgpl-docs = hasFeature (cairo_rs_0_1_3_features."embed-lgpl-docs" or {});
  cairo_rs_0_1_3_features."gtk-rs-lgpl-docs".self_purge-lgpl-docs = hasFeature (cairo_rs_0_1_3_features."purge-lgpl-docs" or {});
  c_vec_1_2_1_features."default".from_cairo_rs_0_1_3__default = true;
  cairo_sys_rs_0_3_4_features."png".from_cairo_rs_0_1_3__png = hasFeature (cairo_rs_0_1_3_features."png" or {});
  cairo_sys_rs_0_3_4_features."v1_12".from_cairo_rs_0_1_3__v1_12 = hasFeature (cairo_rs_0_1_3_features."v1_12" or {});
  cairo_sys_rs_0_3_4_features."xcb".from_cairo_rs_0_1_3__xcb = hasFeature (cairo_rs_0_1_3_features."xcb" or {});
  cairo_sys_rs_0_3_4_features."default".from_cairo_rs_0_1_3__default = true;
  glib_0_1_3_features."default".from_cairo_rs_0_1_3__default = true;
  libc_0_2_23_features."default".from_cairo_rs_0_1_3__default = true;
  winapi_0_2_8_features."default".from_cairo_rs_0_1_3__default = true;
  cairo_sys_rs_0_3_4 = cairo_sys_rs_0_3_4_ rec {
    dependencies = [ libc_0_2_23 ]
      ++ (if kernel == "windows" then [ winapi_0_2_8 ] else []);
    buildDependencies = [ pkg_config_0_3_9 ];
    features = mkFeatures cairo_sys_rs_0_3_4_features;
  };
  cairo_sys_rs_0_3_4_features."v1_12".self_v1_14 = hasFeature (cairo_sys_rs_0_3_4_features."v1_14" or {});
  cairo_sys_rs_0_3_4_features."x11".self_xlib = hasFeature (cairo_sys_rs_0_3_4_features."xlib" or {});
  libc_0_2_23_features."default".from_cairo_sys_rs_0_3_4__default = true;
  x11_0_0_0_features."xlib".from_cairo_sys_rs_0_3_4 = true;
  x11_0_0_0_features."default".from_cairo_sys_rs_0_3_4__default = true;
  winapi_0_2_8_features."default".from_cairo_sys_rs_0_3_4__default = true;
  cfg_if_0_1_0 = cfg_if_0_1_0_ rec {};
  dbus_0_4_1 = dbus_0_4_1_ rec {
    dependencies = [ libc_0_2_23 ];
    buildDependencies = [ pkg_config_0_3_9 ];
  };
  libc_0_2_23_features."default".from_dbus_0_4_1__default = true;
  dbus_macros_0_0_6 = dbus_macros_0_0_6_ rec {
    dependencies = [ dbus_0_4_1 ];
  };
  dbus_0_4_1_features."default".from_dbus_macros_0_0_6__default = true;
  dlib_0_3_1 = dlib_0_3_1_ rec {
    dependencies = [ libloading_0_3_4 ];
    features = mkFeatures dlib_0_3_1_features;
  };
  dlib_0_3_1_features."".self = true;
  libloading_0_3_4_features."default".from_dlib_0_3_1__default = true;
  dtoa_0_4_1 = dtoa_0_4_1_ rec {};
  dummy_rustwlc_0_6_3 = dummy_rustwlc_0_6_3_ rec {
    dependencies = [ bitflags_0_6_0 libc_0_2_23 wayland_sys_0_9_4 ];
  };
  bitflags_0_6_0_features."default".from_dummy_rustwlc_0_6_3__default = true;
  libc_0_2_23_features."default".from_dummy_rustwlc_0_6_3__default = true;
  wayland_sys_0_9_4_features."server".from_dummy_rustwlc_0_6_3 = true;
  wayland_sys_0_9_4_features."dlopen".from_dummy_rustwlc_0_6_3 = true;
  wayland_sys_0_9_4_features."default".from_dummy_rustwlc_0_6_3__default = true;
  env_logger_0_3_5 = env_logger_0_3_5_ rec {
    dependencies = [ log_0_3_7 regex_0_1_80 ]
      ++ (if lib.lists.any (x: x == "regex") features then [regex_0_1_80] else []);
    features = mkFeatures env_logger_0_3_5_features;
  };
  env_logger_0_3_5_features."".self = true;
  env_logger_0_3_5_features."regex".self_default = hasDefault env_logger_0_3_5_features;
  log_0_3_7_features."default".from_env_logger_0_3_5__default = true;
  regex_0_1_80_features."default".from_env_logger_0_3_5__default = true;
  fixedbitset_0_1_6 = fixedbitset_0_1_6_ rec {};
  gcc_0_3_46 = gcc_0_3_46_ rec {
    dependencies = [];
    features = mkFeatures gcc_0_3_46_features;
  };
  gcc_0_3_46_features."rayon".self_parallel = hasFeature (gcc_0_3_46_features."parallel" or {});
  rayon_0_0_0_features."default".from_gcc_0_3_46__default = true;
  getopts_0_2_14 = getopts_0_2_14_ rec {};
  glib_0_1_3 = glib_0_1_3_ rec {
    dependencies = [ bitflags_0_5_0 glib_sys_0_3_4 gobject_sys_0_3_4 lazy_static_0_2_8 libc_0_2_23 ];
    features = mkFeatures glib_0_1_3_features;
  };
  glib_0_1_3_features."v2_38".self_v2_40 = hasFeature (glib_0_1_3_features."v2_40" or {});
  glib_0_1_3_features."v2_40".self_v2_44 = hasFeature (glib_0_1_3_features."v2_44" or {});
  glib_0_1_3_features."v2_44".self_v2_46 = hasFeature (glib_0_1_3_features."v2_46" or {});
  glib_0_1_3_features."v2_46".self_v2_48 = hasFeature (glib_0_1_3_features."v2_48" or {});
  glib_0_1_3_features."v2_48".self_v2_50 = hasFeature (glib_0_1_3_features."v2_50" or {});
  bitflags_0_5_0_features."default".from_glib_0_1_3__default = true;
  glib_sys_0_3_4_features."v2_38".from_glib_0_1_3__v2_38 = hasFeature (glib_0_1_3_features."v2_38" or {});
  glib_sys_0_3_4_features."v2_40".from_glib_0_1_3__v2_40 = hasFeature (glib_0_1_3_features."v2_40" or {});
  glib_sys_0_3_4_features."v2_44".from_glib_0_1_3__v2_44 = hasFeature (glib_0_1_3_features."v2_44" or {});
  glib_sys_0_3_4_features."v2_46".from_glib_0_1_3__v2_46 = hasFeature (glib_0_1_3_features."v2_46" or {});
  glib_sys_0_3_4_features."v2_48".from_glib_0_1_3__v2_48 = hasFeature (glib_0_1_3_features."v2_48" or {});
  glib_sys_0_3_4_features."v2_50".from_glib_0_1_3__v2_50 = hasFeature (glib_0_1_3_features."v2_50" or {});
  glib_sys_0_3_4_features."default".from_glib_0_1_3__default = true;
  gobject_sys_0_3_4_features."v2_38".from_glib_0_1_3__v2_38 = hasFeature (glib_0_1_3_features."v2_38" or {});
  gobject_sys_0_3_4_features."v2_44".from_glib_0_1_3__v2_44 = hasFeature (glib_0_1_3_features."v2_44" or {});
  gobject_sys_0_3_4_features."v2_46".from_glib_0_1_3__v2_46 = hasFeature (glib_0_1_3_features."v2_46" or {});
  gobject_sys_0_3_4_features."default".from_glib_0_1_3__default = true;
  lazy_static_0_2_8_features."default".from_glib_0_1_3__default = true;
  libc_0_2_23_features."default".from_glib_0_1_3__default = true;
  glib_sys_0_3_4 = glib_sys_0_3_4_ rec {
    dependencies = [ bitflags_0_8_2 libc_0_2_23 ];
    buildDependencies = [ pkg_config_0_3_9 ];
    features = mkFeatures glib_sys_0_3_4_features;
  };
  glib_sys_0_3_4_features."v2_34".self_v2_36 = hasFeature (glib_sys_0_3_4_features."v2_36" or {});
  glib_sys_0_3_4_features."v2_36".self_v2_38 = hasFeature (glib_sys_0_3_4_features."v2_38" or {});
  glib_sys_0_3_4_features."v2_38".self_v2_40 = hasFeature (glib_sys_0_3_4_features."v2_40" or {});
  glib_sys_0_3_4_features."v2_40".self_v2_44 = hasFeature (glib_sys_0_3_4_features."v2_44" or {});
  glib_sys_0_3_4_features."v2_44".self_v2_46 = hasFeature (glib_sys_0_3_4_features."v2_46" or {});
  glib_sys_0_3_4_features."v2_46".self_v2_48 = hasFeature (glib_sys_0_3_4_features."v2_48" or {});
  glib_sys_0_3_4_features."v2_48".self_v2_50 = hasFeature (glib_sys_0_3_4_features."v2_50" or {});
  bitflags_0_8_2_features."default".from_glib_sys_0_3_4__default = true;
  libc_0_2_23_features."default".from_glib_sys_0_3_4__default = true;
  gobject_sys_0_3_4 = gobject_sys_0_3_4_ rec {
    dependencies = [ bitflags_0_8_2 glib_sys_0_3_4 libc_0_2_23 ];
    buildDependencies = [ pkg_config_0_3_9 ];
    features = mkFeatures gobject_sys_0_3_4_features;
  };
  gobject_sys_0_3_4_features."v2_34".self_v2_36 = hasFeature (gobject_sys_0_3_4_features."v2_36" or {});
  gobject_sys_0_3_4_features."v2_36".self_v2_38 = hasFeature (gobject_sys_0_3_4_features."v2_38" or {});
  gobject_sys_0_3_4_features."v2_38".self_v2_42 = hasFeature (gobject_sys_0_3_4_features."v2_42" or {});
  gobject_sys_0_3_4_features."v2_42".self_v2_44 = hasFeature (gobject_sys_0_3_4_features."v2_44" or {});
  gobject_sys_0_3_4_features."v2_44".self_v2_46 = hasFeature (gobject_sys_0_3_4_features."v2_46" or {});
  bitflags_0_8_2_features."default".from_gobject_sys_0_3_4__default = true;
  glib_sys_0_3_4_features."default".from_gobject_sys_0_3_4__default = true;
  libc_0_2_23_features."default".from_gobject_sys_0_3_4__default = true;
  hlua_0_1_9 = hlua_0_1_9_ rec {
    dependencies = [ libc_0_2_23 lua52_sys_0_0_4 ];
  };
  libc_0_2_23_features."default".from_hlua_0_1_9__default = true;
  lua52_sys_0_0_4_features."default".from_hlua_0_1_9__default = true;
  itoa_0_3_1 = itoa_0_3_1_ rec {};
  json_macro_0_1_1 = json_macro_0_1_1_ rec {
    dependencies = [ rustc_serialize_0_3_24 ];
  };
  rustc_serialize_0_3_24_features."default".from_json_macro_0_1_1__default = true;
  kernel32_sys_0_2_2 = kernel32_sys_0_2_2_ rec {
    dependencies = [ winapi_0_2_8 ];
    buildDependencies = [ winapi_build_0_1_1 ];
  };
  winapi_0_2_8_features."default".from_kernel32_sys_0_2_2__default = true;
  lazy_static_0_2_8 = lazy_static_0_2_8_ rec {
    dependencies = [];
    features = mkFeatures lazy_static_0_2_8_features;
  };
  lazy_static_0_2_8_features."nightly".self_spin_no_std = hasFeature (lazy_static_0_2_8_features."spin_no_std" or {});
  lazy_static_0_2_8_features."spin".self_spin_no_std = hasFeature (lazy_static_0_2_8_features."spin_no_std" or {});
  spin_0_0_0_features."default".from_lazy_static_0_2_8__default = true;
  libc_0_2_23 = libc_0_2_23_ rec {
    features = mkFeatures libc_0_2_23_features;
  };
  libc_0_2_23_features."use_std".self_default = hasDefault libc_0_2_23_features;
  libloading_0_3_4 = libloading_0_3_4_ rec {
    dependencies = [ lazy_static_0_2_8 ]
      ++ (if kernel == "windows" then [ kernel32_sys_0_2_2 winapi_0_2_8 ] else []);
    buildDependencies = [ target_build_utils_0_3_1 ];
  };
  lazy_static_0_2_8_features."default".from_libloading_0_3_4__default = true;
  kernel32_sys_0_2_2_features."default".from_libloading_0_3_4__default = true;
  winapi_0_2_8_features."default".from_libloading_0_3_4__default = true;
  log_0_3_7 = log_0_3_7_ rec {
    features = mkFeatures log_0_3_7_features;
  };
  log_0_3_7_features."use_std".self_default = hasDefault log_0_3_7_features;
  lua52_sys_0_0_4 = lua52_sys_0_0_4_ rec {
    dependencies = [ libc_0_2_23 ];
    buildDependencies = [ gcc_0_3_46 pkg_config_0_3_9 ];
  };
  libc_0_2_23_features."default".from_lua52_sys_0_0_4__default = true;
  memchr_0_1_11 = memchr_0_1_11_ rec {
    dependencies = [ libc_0_2_23 ];
  };
  libc_0_2_23_features."default".from_memchr_0_1_11__default = true;
  nix_0_6_0 = nix_0_6_0_ rec {
    dependencies = [ bitflags_0_4_0 cfg_if_0_1_0 libc_0_2_23 void_1_0_2 ];
    buildDependencies = [ rustc_version_0_1_7 semver_0_1_20 ];
    features = mkFeatures nix_0_6_0_features;
  };
  nix_0_6_0_features."".self = true;
  bitflags_0_4_0_features."default".from_nix_0_6_0__default = true;
  cfg_if_0_1_0_features."default".from_nix_0_6_0__default = true;
  libc_0_2_23_features."default".from_nix_0_6_0__default = true;
  void_1_0_2_features."default".from_nix_0_6_0__default = true;
  nix_0_8_1 = nix_0_8_1_ rec {
    dependencies = [ bitflags_0_7_0 cfg_if_0_1_0 libc_0_2_23 void_1_0_2 ];
    features = mkFeatures nix_0_8_1_features;
  };
  nix_0_8_1_features."".self = true;
  bitflags_0_7_0_features."default".from_nix_0_8_1__default = true;
  cfg_if_0_1_0_features."default".from_nix_0_8_1__default = true;
  libc_0_2_23_features."default".from_nix_0_8_1__default = true;
  void_1_0_2_features."default".from_nix_0_8_1__default = true;
  num_traits_0_1_37 = num_traits_0_1_37_ rec {};
  ordermap_0_2_10 = ordermap_0_2_10_ rec {
    features = mkFeatures ordermap_0_2_10_features;
  };
  ordermap_0_2_10_features."".self = true;
  petgraph_0_4_5 = petgraph_0_4_5_ rec {
    dependencies = [ fixedbitset_0_1_6 ordermap_0_2_10 ]
      ++ (if lib.lists.any (x: x == "ordermap") features then [ordermap_0_2_10] else []);
    features = mkFeatures petgraph_0_4_5_features;
  };
  petgraph_0_4_5_features."".self = true;
  petgraph_0_4_5_features."unstable".self_all = hasFeature (petgraph_0_4_5_features."all" or {});
  petgraph_0_4_5_features."quickcheck".self_all = hasFeature (petgraph_0_4_5_features."all" or {});
  petgraph_0_4_5_features."stable_graph".self_all = hasFeature (petgraph_0_4_5_features."all" or {});
  petgraph_0_4_5_features."graphmap".self_all = hasFeature (petgraph_0_4_5_features."all" or {});
  petgraph_0_4_5_features."graphmap".self_default = hasDefault petgraph_0_4_5_features;
  petgraph_0_4_5_features."stable_graph".self_default = hasDefault petgraph_0_4_5_features;
  petgraph_0_4_5_features."ordermap".self_graphmap = hasFeature (petgraph_0_4_5_features."graphmap" or {});
  petgraph_0_4_5_features."generate".self_unstable = hasFeature (petgraph_0_4_5_features."unstable" or {});
  fixedbitset_0_1_6_features."default".from_petgraph_0_4_5__default = true;
  ordermap_0_2_10_features."default".from_petgraph_0_4_5__default = true;
  quickcheck_0_0_0_features."default".from_petgraph_0_4_5__default = false;
  phf_0_7_21 = phf_0_7_21_ rec {
    dependencies = [ phf_shared_0_7_21 ];
    features = mkFeatures phf_0_7_21_features;
  };
  phf_0_7_21_features."".self = true;
  phf_shared_0_7_21_features."core".from_phf_0_7_21__core = hasFeature (phf_0_7_21_features."core" or {});
  phf_shared_0_7_21_features."unicase".from_phf_0_7_21__unicase = hasFeature (phf_0_7_21_features."unicase" or {});
  phf_shared_0_7_21_features."default".from_phf_0_7_21__default = true;
  phf_codegen_0_7_21 = phf_codegen_0_7_21_ rec {
    dependencies = [ phf_generator_0_7_21 phf_shared_0_7_21 ];
  };
  phf_generator_0_7_21_features."default".from_phf_codegen_0_7_21__default = true;
  phf_shared_0_7_21_features."default".from_phf_codegen_0_7_21__default = true;
  phf_generator_0_7_21 = phf_generator_0_7_21_ rec {
    dependencies = [ phf_shared_0_7_21 rand_0_3_15 ];
  };
  phf_shared_0_7_21_features."default".from_phf_generator_0_7_21__default = true;
  rand_0_3_15_features."default".from_phf_generator_0_7_21__default = true;
  phf_shared_0_7_21 = phf_shared_0_7_21_ rec {
    dependencies = [ siphasher_0_2_2 ];
    features = mkFeatures phf_shared_0_7_21_features;
  };
  phf_shared_0_7_21_features."".self = true;
  siphasher_0_2_2_features."default".from_phf_shared_0_7_21__default = true;
  unicase_0_0_0_features."default".from_phf_shared_0_7_21__default = true;
  pkg_config_0_3_9 = pkg_config_0_3_9_ rec {};
  rand_0_3_15 = rand_0_3_15_ rec {
    dependencies = [ libc_0_2_23 ];
  };
  libc_0_2_23_features."default".from_rand_0_3_15__default = true;
  regex_0_1_80 = regex_0_1_80_ rec {
    dependencies = [ aho_corasick_0_5_3 memchr_0_1_11 regex_syntax_0_3_9 thread_local_0_2_7 utf8_ranges_0_1_3 ];
    features = mkFeatures regex_0_1_80_features;
  };
  regex_0_1_80_features."simd".self_simd-accel = hasFeature (regex_0_1_80_features."simd-accel" or {});
  aho_corasick_0_5_3_features."default".from_regex_0_1_80__default = true;
  memchr_0_1_11_features."default".from_regex_0_1_80__default = true;
  regex_syntax_0_3_9_features."default".from_regex_0_1_80__default = true;
  simd_0_0_0_features."default".from_regex_0_1_80__default = true;
  thread_local_0_2_7_features."default".from_regex_0_1_80__default = true;
  utf8_ranges_0_1_3_features."default".from_regex_0_1_80__default = true;
  regex_syntax_0_3_9 = regex_syntax_0_3_9_ rec {};
  rustc_serialize_0_3_24 = rustc_serialize_0_3_24_ rec {};
  rustc_version_0_1_7 = rustc_version_0_1_7_ rec {
    dependencies = [ semver_0_1_20 ];
  };
  semver_0_1_20_features."default".from_rustc_version_0_1_7__default = true;
  rustwlc_0_6_2 = rustwlc_0_6_2_ rec {
    dependencies = [ bitflags_0_7_0 libc_0_2_23 wayland_sys_0_6_0 ]
      ++ (if lib.lists.any (x: x == "wayland-sys") features then [wayland_sys_0_6_0] else []);
    features = mkFeatures rustwlc_0_6_2_features;
  };
  rustwlc_0_6_2_features."".self = true;
  rustwlc_0_6_2_features."wayland-sys".self_wlc-wayland = hasFeature (rustwlc_0_6_2_features."wlc-wayland" or {});
  bitflags_0_7_0_features."default".from_rustwlc_0_6_2__default = true;
  libc_0_2_23_features."default".from_rustwlc_0_6_2__default = true;
  wayland_sys_0_6_0_features."server".from_rustwlc_0_6_2 = true;
  wayland_sys_0_6_0_features."default".from_rustwlc_0_6_2__default = true;
  semver_0_1_20 = semver_0_1_20_ rec {};
  serde_0_9_15 = serde_0_9_15_ rec {
    dependencies = [];
    features = mkFeatures serde_0_9_15_features;
  };
  serde_0_9_15_features."unstable".self_alloc = hasFeature (serde_0_9_15_features."alloc" or {});
  serde_0_9_15_features."alloc".self_collections = hasFeature (serde_0_9_15_features."collections" or {});
  serde_0_9_15_features."std".self_default = hasDefault serde_0_9_15_features;
  serde_0_9_15_features."serde_derive".self_derive = hasFeature (serde_0_9_15_features."derive" or {});
  serde_0_9_15_features."serde_derive".self_playground = hasFeature (serde_0_9_15_features."playground" or {});
  serde_0_9_15_features."unstable".self_unstable-testing = hasFeature (serde_0_9_15_features."unstable-testing" or {});
  serde_0_9_15_features."std".self_unstable-testing = hasFeature (serde_0_9_15_features."unstable-testing" or {});
  serde_derive_0_0_0_features."default".from_serde_0_9_15__default = true;
  serde_json_0_9_10 = serde_json_0_9_10_ rec {
    dependencies = [ dtoa_0_4_1 itoa_0_3_1 num_traits_0_1_37 serde_0_9_15 ];
    features = mkFeatures serde_json_0_9_10_features;
  };
  serde_json_0_9_10_features."linked-hash-map".self_preserve_order = hasFeature (serde_json_0_9_10_features."preserve_order" or {});
  dtoa_0_4_1_features."default".from_serde_json_0_9_10__default = true;
  itoa_0_3_1_features."default".from_serde_json_0_9_10__default = true;
  linked_hash_map_0_0_0_features."default".from_serde_json_0_9_10__default = true;
  num_traits_0_1_37_features."default".from_serde_json_0_9_10__default = true;
  serde_0_9_15_features."default".from_serde_json_0_9_10__default = true;
  siphasher_0_2_2 = siphasher_0_2_2_ rec {
    dependencies = [];
  };
  clippy_0_0_0_features."default".from_siphasher_0_2_2__default = true;
  target_build_utils_0_3_1 = target_build_utils_0_3_1_ rec {
    dependencies = [ phf_0_7_21 serde_json_0_9_10 ]
      ++ (if lib.lists.any (x: x == "serde_json") features then [serde_json_0_9_10] else []);
    buildDependencies = [ phf_codegen_0_7_21 ];
    features = mkFeatures target_build_utils_0_3_1_features;
  };
  target_build_utils_0_3_1_features."".self = true;
  target_build_utils_0_3_1_features."serde_json".self_default = hasDefault target_build_utils_0_3_1_features;
  phf_0_7_21_features."default".from_target_build_utils_0_3_1__default = true;
  serde_json_0_9_10_features."default".from_target_build_utils_0_3_1__default = true;
  thread_id_2_0_0 = thread_id_2_0_0_ rec {
    dependencies = [ kernel32_sys_0_2_2 libc_0_2_23 ];
  };
  kernel32_sys_0_2_2_features."default".from_thread_id_2_0_0__default = true;
  libc_0_2_23_features."default".from_thread_id_2_0_0__default = true;
  thread_local_0_2_7 = thread_local_0_2_7_ rec {
    dependencies = [ thread_id_2_0_0 ];
  };
  thread_id_2_0_0_features."default".from_thread_local_0_2_7__default = true;
  utf8_ranges_0_1_3 = utf8_ranges_0_1_3_ rec {};
  uuid_0_3_1 = uuid_0_3_1_ rec {
    dependencies = [ rand_0_3_15 rustc_serialize_0_3_24 ]
      ++ (if lib.lists.any (x: x == "rand") features then [rand_0_3_15] else [])      ++ (if lib.lists.any (x: x == "rustc-serialize") features then [rustc_serialize_0_3_24] else []);
    features = mkFeatures uuid_0_3_1_features;
  };
  uuid_0_3_1_features."".self = true;
  uuid_0_3_1_features."rand".self_v4 = hasFeature (uuid_0_3_1_features."v4" or {});
  uuid_0_3_1_features."sha1".self_v5 = hasFeature (uuid_0_3_1_features."v5" or {});
  rand_0_3_15_features."default".from_uuid_0_3_1__default = true;
  rustc_serialize_0_3_24_features."default".from_uuid_0_3_1__default = true;
  serde_0_0_0_features."default".from_uuid_0_3_1__default = true;
  sha1_0_0_0_features."default".from_uuid_0_3_1__default = true;
  void_1_0_2 = void_1_0_2_ rec {
    features = mkFeatures void_1_0_2_features;
  };
  void_1_0_2_features."std".self_default = hasDefault void_1_0_2_features;
  way_cooler_0_6_2 = way_cooler_0_6_2_ rec {
    dependencies = [ bitflags_0_7_0 cairo_rs_0_1_3 dbus_0_4_1 dbus_macros_0_0_6 env_logger_0_3_5 getopts_0_2_14 hlua_0_1_9 json_macro_0_1_1 lazy_static_0_2_8 log_0_3_7 nix_0_6_0 petgraph_0_4_5 rustc_serialize_0_3_24 rustwlc_0_6_2 uuid_0_3_1 wayland_server_0_9_4 wayland_sys_0_9_4 ];
    buildDependencies = [ wayland_scanner_0_9_4 ];
    features = mkFeatures way_cooler_0_6_2_features;
  };
  way_cooler_0_6_2_features."".self = true;
  bitflags_0_7_0_features."default".from_way_cooler_0_6_2__default = true;
  cairo_rs_0_1_3_features."default".from_way_cooler_0_6_2__default = true;
  dbus_0_4_1_features."default".from_way_cooler_0_6_2__default = true;
  dbus_macros_0_0_6_features."default".from_way_cooler_0_6_2__default = true;
  env_logger_0_3_5_features."default".from_way_cooler_0_6_2__default = true;
  getopts_0_2_14_features."default".from_way_cooler_0_6_2__default = true;
  hlua_0_1_9_features."default".from_way_cooler_0_6_2__default = true;
  json_macro_0_1_1_features."default".from_way_cooler_0_6_2__default = true;
  lazy_static_0_2_8_features."default".from_way_cooler_0_6_2__default = true;
  log_0_3_7_features."default".from_way_cooler_0_6_2__default = true;
  nix_0_6_0_features."default".from_way_cooler_0_6_2__default = true;
  petgraph_0_4_5_features."default".from_way_cooler_0_6_2__default = true;
  rustc_serialize_0_3_24_features."default".from_way_cooler_0_6_2__default = true;
  rustwlc_0_6_2_features."wlc-wayland".from_way_cooler_0_6_2 = true;
  rustwlc_0_6_2_features."static-wlc".from_way_cooler_0_6_2__static-wlc = hasFeature (way_cooler_0_6_2_features."static-wlc" or {});
  rustwlc_0_6_2_features."default".from_way_cooler_0_6_2__default = true;
  uuid_0_3_1_features."v4".from_way_cooler_0_6_2 = true;
  uuid_0_3_1_features."rustc-serialize".from_way_cooler_0_6_2 = true;
  uuid_0_3_1_features."default".from_way_cooler_0_6_2__default = true;
  wayland_server_0_9_4_features."default".from_way_cooler_0_6_2__default = true;
  wayland_sys_0_9_4_features."client".from_way_cooler_0_6_2 = true;
  wayland_sys_0_9_4_features."dlopen".from_way_cooler_0_6_2 = true;
  wayland_sys_0_9_4_features."default".from_way_cooler_0_6_2__default = true;
  wayland_scanner_0_9_4 = wayland_scanner_0_9_4_ rec {
    dependencies = [ xml_rs_0_3_6 ];
  };
  xml_rs_0_3_6_features."default".from_wayland_scanner_0_9_4__default = true;
  wayland_server_0_9_4 = wayland_server_0_9_4_ rec {
    dependencies = [ bitflags_0_7_0 libc_0_2_23 nix_0_8_1 wayland_sys_0_9_4 ];
    buildDependencies = [ wayland_scanner_0_9_4 ];
    features = mkFeatures wayland_server_0_9_4_features;
  };
  wayland_server_0_9_4_features."".self = true;
  bitflags_0_7_0_features."default".from_wayland_server_0_9_4__default = true;
  libc_0_2_23_features."default".from_wayland_server_0_9_4__default = true;
  nix_0_8_1_features."default".from_wayland_server_0_9_4__default = true;
  wayland_sys_0_9_4_features."server".from_wayland_server_0_9_4 = true;
  wayland_sys_0_9_4_features."dlopen".from_wayland_server_0_9_4__dlopen = hasFeature (wayland_server_0_9_4_features."dlopen" or {});
  wayland_sys_0_9_4_features."default".from_wayland_server_0_9_4__default = true;
  wayland_sys_0_6_0 = wayland_sys_0_6_0_ rec {
    dependencies = [ dlib_0_3_1 libc_0_2_23 ]
      ++ (if lib.lists.any (x: x == "libc") features then [libc_0_2_23] else []);
    features = mkFeatures wayland_sys_0_6_0_features;
  };
  wayland_sys_0_6_0_features."".self = true;
  wayland_sys_0_6_0_features."lazy_static".self_dlopen = hasFeature (wayland_sys_0_6_0_features."dlopen" or {});
  wayland_sys_0_6_0_features."libc".self_server = hasFeature (wayland_sys_0_6_0_features."server" or {});
  dlib_0_3_1_features."dlopen".from_wayland_sys_0_6_0__dlopen = hasFeature (wayland_sys_0_6_0_features."dlopen" or {});
  dlib_0_3_1_features."default".from_wayland_sys_0_6_0__default = true;
  lazy_static_0_0_0_features."default".from_wayland_sys_0_6_0__default = true;
  libc_0_2_23_features."default".from_wayland_sys_0_6_0__default = true;
  wayland_sys_0_9_4 = wayland_sys_0_9_4_ rec {
    dependencies = [ dlib_0_3_1 lazy_static_0_2_8 libc_0_2_23 ]
      ++ (if lib.lists.any (x: x == "lazy_static") features then [lazy_static_0_2_8] else [])      ++ (if lib.lists.any (x: x == "libc") features then [libc_0_2_23] else []);
    features = mkFeatures wayland_sys_0_9_4_features;
  };
  wayland_sys_0_9_4_features."".self = true;
  wayland_sys_0_9_4_features."lazy_static".self_dlopen = hasFeature (wayland_sys_0_9_4_features."dlopen" or {});
  wayland_sys_0_9_4_features."libc".self_server = hasFeature (wayland_sys_0_9_4_features."server" or {});
  dlib_0_3_1_features."dlopen".from_wayland_sys_0_9_4__dlopen = hasFeature (wayland_sys_0_9_4_features."dlopen" or {});
  dlib_0_3_1_features."default".from_wayland_sys_0_9_4__default = true;
  lazy_static_0_2_8_features."default".from_wayland_sys_0_9_4__default = true;
  libc_0_2_23_features."default".from_wayland_sys_0_9_4__default = true;
  winapi_0_2_8 = winapi_0_2_8_ rec {};
  winapi_build_0_1_1 = winapi_build_0_1_1_ rec {};
  xml_rs_0_3_6 = xml_rs_0_3_6_ rec {
    dependencies = [ bitflags_0_7_0 ];
  };
  bitflags_0_7_0_features."default".from_xml_rs_0_3_6__default = true;
}